コード例 #1
0
ファイル: gocean0p1.py プロジェクト: stfc/PSyclone
 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"])
コード例 #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)
コード例 #3
0
ファイル: dynamo0p1.py プロジェクト: mfkiwl/PSyclone
 def __init__(self, alg_invocation, idx, invokes):
     self._schedule = DynInvokeSchedule('name', None)  # for pyreverse
     Invoke.__init__(self, alg_invocation, idx, DynInvokeSchedule, invokes)
コード例 #4
0
ファイル: dynamo0p1.py プロジェクト: muhdfirdaus373/PSyclone
 def __init__(self, alg_invocation, idx):
     if False:
         self._schedule = DynInvokeSchedule(None)  # for pyreverse
     Invoke.__init__(self, alg_invocation, idx, DynInvokeSchedule)