Example #1
0
 def __cmp__(self, other):
     if self._prob != other.prob(): return -1
     return TreeEdge.__cmp__(self, other)
Example #2
0
 def __cmp__(self, other):
     if self._prob != other.prob(): return -1
     return TreeEdge.__cmp__(self, other)
Example #3
0
 def __init__(self, prob, *args, **kwargs):
     self._prob = prob
     TreeEdge.__init__(self, *args, **kwargs)
Example #4
0
 def __init__(self, prob, *args, **kwargs):
     self._prob = prob
     TreeEdge.__init__(self, *args, **kwargs)