Ejemplo n.º 1
0
def rand_weighted(s, *_):  # redo these using WeightedLin class
    return opt_mindep.randlin_fixed_weights(s,
                                            thing_fn=CONDITIONING,
                                            head_final=False)[-1]
Ejemplo n.º 2
0
def rand_weighted_headfinal(s, *_):
    return opt_mindep.randlin_fixed_weights(s,
                                            thing_fn=opt_mindep.get_deptype,
                                            head_final=True)[-1]
Ejemplo n.º 3
0
def random_sample_weighted_best_case_memory_cost(s, *_):
    _, lin = opt_mindep.randlin_fixed_weights(s)
    return mindep.best_case_memory_cost(s, linearization=lin)