Ejemplo n.º 1
0
 def __init__(self, problem):
     Join.__init__(self)
     self.grandparent_problem = problem
     '''automatically add appropriate jobs to this join'''
     for l1 in self.grandparent_problem.children:
         self.add_job(l1.jobs["searchfragment"])
         for l2 in l1.children:
             self.add_job(l2.jobs["buildmodel"])
Ejemplo n.º 2
0
 def __init__(self, problem):
     Join.__init__(self)
     self.grandparent_problem = problem
     '''automatically add appropriate jobs to this join'''
     for l1 in self.grandparent_problem.children:
         self.add_job(l1.jobs["searchfragment"])
         for l2 in l1.children:
             self.add_job(l2.jobs["buildmodel"])
Ejemplo n.º 3
0
 def __init__(self):
     Join.__init__(self)
Ejemplo n.º 4
0
 def __init__(self, root_problem):
     Join.__init__(self)
     self.root_problem = root_problem
     for p in root_problem.iter_leaves():
         self.add_job(p.jobs["searchfragment"])
Ejemplo n.º 5
0
 def __init__(self, problem):
     Join.__init__(self)
     self.summarylevel_problem = problem
     '''Add jobs of applymodel of the grand __parent's children (parents)'''
     for tip in self.summarylevel_problem.iter_leaves():
         self.add_job(tip.jobs["applymodel"])
Ejemplo n.º 6
0
 def __init__(self, alignment_threshold):
     Join.__init__(self)
     self.alignment_threshold = alignment_threshold
Ejemplo n.º 7
0
 def __init__(self, placer):
     Join.__init__(self)
     self.placer = placer
Ejemplo n.º 8
0
 def __init__(self):
     Join.__init__(self)
Ejemplo n.º 9
0
 def __init__(self, alignment_threshold):
     Join.__init__(self)
     self.alignment_threshold = alignment_threshold
Ejemplo n.º 10
0
 def __init__(self, placer):
     Join.__init__(self)
     self.placer = placer
Ejemplo n.º 11
0
 def __init__(self):
     Join.__init__(self)
     self.root_problem = None
Ejemplo n.º 12
0
 def __init__(self, root_problem):
     Join.__init__(self)
     self.root_problem = root_problem
     for p in root_problem.iter_leaves():
         self.add_job(p.jobs["searchfragment"])
Ejemplo n.º 13
0
 def __init__(self, problem):
     Join.__init__(self)
     self.summarylevel_problem = problem
     '''Add jobs of applymodel of the grand __parent's children (parents)'''
     for tip in self.summarylevel_problem.iter_leaves():
         self.add_job(tip.jobs["applymodel"])
Ejemplo n.º 14
0
 def __init__(self, alignment_threshold):
     Join.__init__(self)
     self.alignment_threshold = alignment_threshold
     self.root_problem = None