Ejemplo n.º 1
0
 def __init__(self, incluster, outcluster):
     self._inputs = [incluster]
     self._outputs = [outcluster]
     self._constraints = []
     MultiMethod.__init__(self)
Ejemplo n.º 2
0
 def __init__(self, incluster, selclusters, outcluster, constraints, enabled):
     self._inputs = [incluster]+selclusters+[enabled]
     self._outputs = [outcluster]
     self._constraints = constraints
     MultiMethod.__init__(self)
Ejemplo n.º 3
0
 def __init__(self):
     self.overconstrained = None
     self.consistent = None
     MultiMethod.__init__(self)
Ejemplo n.º 4
0
 def __init__(self, incluster, selclusters, outcluster, constraints):
     self._inputs = [incluster] + selclusters
     self._outputs = [outcluster]
     self._constraints = constraints
     MultiMethod.__init__(self)
Ejemplo n.º 5
0
 def __init__(self):
     self.consistent = None
     self.overconstrained = None
     MultiMethod.__init__(self)
Ejemplo n.º 6
0
 def __init__(self, incluster, outcluster):
     self._inputs = [incluster]
     self._outputs = [outcluster]
     self._constraints = []
     MultiMethod.__init__(self)