Ejemplo n.º 1
0
Archivo: B.py Proyecto: vishnur/ufora
def b_func(x):
    if x < 0:
        return x
    return A_alias.a_func(x - 1) + C.c_func(x - 2)
Ejemplo n.º 2
0
def c_func(x):
    if x < 0:
        return x
    return A.a_func(x - 1) + d_renamed_func(x - 3) + x
Ejemplo n.º 3
0
Archivo: C.py Proyecto: Sandy4321/ufora
def c_func(x):
    if x < 0:
        return x
    return A.a_func(x - 1) + d_renamed_func(x - 3) + x
Ejemplo n.º 4
0
Archivo: B.py Proyecto: Sandy4321/ufora
def b_func(x):
    if x < 0:
        return x
    return A_alias.a_func(x - 1) + C.c_func(x - 2)