Searched refs:allow_transition (Results 1 – 6 of 6) sorted by relevance
/dports/biology/py-biopython/biopython-1.79/Tests/ |
H A D | test_HMMGeneral.py | 121 self.mm_builder.allow_transition("1", "2", 0.05) 122 self.mm_builder.allow_transition("2", "1", 0.95) 137 self.mm_builder.allow_transition("1", "2", 0.05) 138 self.mm_builder.allow_transition("2", "1", 0.95) 156 self.mm_builder.allow_transition("1", "2", 1.0) 157 self.mm_builder.allow_transition("2", "1", 0.5) 158 self.mm_builder.allow_transition("2", "2", 0.5) 180 self.mm_builder.allow_transition("1", "1", 0.5) 181 self.mm_builder.allow_transition("1", "2", 0.5) 182 self.mm_builder.allow_transition("2", "1", 1.0) [all …]
|
/dports/devel/py-hypothesis/hypothesis-6.28.0/src/hypothesis/internal/conjecture/ |
H A D | pareto.py | 312 def allow_transition(source, destination): function 333 shrunk = self.__engine.shrink(target, allow_transition=allow_transition)
|
H A D | engine.py | 979 def shrink(self, example, predicate=None, allow_transition=None): argument 980 s = self.new_shrinker(example, predicate, allow_transition) 984 def new_shrinker(self, example, predicate=None, allow_transition=None): argument 985 return Shrinker(self, example, predicate, allow_transition)
|
H A D | shrinker.py | 266 def __init__(self, engine, initial, predicate, allow_transition): argument 275 assert predicate is not None or allow_transition is not None 278 self.__allow_transition = allow_transition or (lambda source, destination: True)
|
/dports/graphics/impressive/Impressive-0.13.0-beta2/ |
H A D | impressive.py | 4501 LeaveZoomMode(allow_transition) 4509 LeaveZoomMode(allow_transition) 4531 if allow_transition: 4650 def LeaveZoomMode(allow_transition=True): argument 5660 def _hyperlink(self, allow_transition=True): argument 5666 TransitionTo(target, allow_transition=allow_transition) 5673 return self._hyperlink(allow_transition=False) 5689 TransitionTo(LastPage, allow_transition=True) 5692 TransitionTo(LastPage, allow_transition=False) 5696 TransitionTo(1, allow_transition=True) [all …]
|
/dports/biology/py-biopython/biopython-1.79/Bio/HMM/ |
H A D | MarkovModel.py | 328 def allow_transition( member in MarkovModelBuilder
|