Exemple #1
0
def init():
    """
    Llama la funcion de inicializacion del modelo.
    """
    analyzer = model.newAnalyzer()

    return analyzer
Exemple #2
0
def init():
    """
    Llama la funcion de inicializacion  del modelo.
    """
    # catalog es utilizado para interactuar con el modelo
    analyzer = model.newAnalyzer()
    return analyzer
def init(tamaño, carga):
    """
    Llama la funcion de inicializacion  del modelo.
    """
    # analyzer es utilizado para interactuar con el modelo
    analyzer = model.newAnalyzer(tamaño, carga)
    return analyzer
Exemple #4
0
def init():
    """
    Llama la funcion de inicializacion  del modelo.
    """
    # analyzer es utilizado para interactuar con el modelo

    tracemalloc.start()
    start_time = getTime()
    start_memory = getMemory()
    analyzer = model.newAnalyzer()
    stop_memory = getMemory()
    stop_time = getTime()
    tracemalloc.stop()

    delta_time = stop_time - start_time
    delta_memory = deltaMemory(start_memory, stop_memory)
    return analyzer, delta_time, delta_memory
Exemple #5
0
def newAnalyzer():
    Taxis = model.newAnalyzer()
    model.create_Hash(Taxis)
    return Taxis
Exemple #6
0
def init():
    analyzer = model.newAnalyzer()
    return analyzer
def newAnalyzer():
    bikes=model.newAnalyzer()
    return bikes
Exemple #8
0
def init():
    citibike = model.newAnalyzer()
    return citibike
Exemple #9
0
def init():
    """
    Llama la funcion de inicializacion  del modelo.
    """
    citibike = model.newAnalyzer()
    return citibike
Exemple #10
0
def init(in_t):
    Type = 'BST' if in_t == '1' else 'RBT'
    analyzer = md.newAnalyzer(Type)
    return analyzer