Exemplo n.º 1
0
 def __init__(self, alg_invocation, idx, invokes):
     # pylint: disable=using-constant-test
     if False:
         self._schedule = GOInvokeSchedule(None)  # for pyreverse
     Invoke.__init__(self,
                     alg_invocation,
                     idx,
                     GOInvokeSchedule,
                     invokes,
                     reserved_names=["cf", "ct", "cu", "cv"])
Exemplo n.º 2
0
 def __init__(self, alg_invocation, idx):
     if False:  # pylint: disable=using-constant-test
         self._schedule = GOSchedule(None)  # for pyreverse
     Invoke.__init__(self, alg_invocation, idx, GOSchedule)
Exemplo n.º 3
0
 def __init__(self, alg_invocation, idx, invokes):
     self._schedule = DynInvokeSchedule('name', None)  # for pyreverse
     Invoke.__init__(self, alg_invocation, idx, DynInvokeSchedule, invokes)
Exemplo n.º 4
0
 def __init__(self, alg_invocation, idx):
     if False:
         self._schedule = DynInvokeSchedule(None)  # for pyreverse
     Invoke.__init__(self, alg_invocation, idx, DynInvokeSchedule)