コード例 #1
0
 def create_subedge(self,
                    presubvertex,
                    postsubvertex,
                    constraints=None,
                    label=None):
     """
     Creates a subedge from this edge
     """
     if constraints is None:
         constraints = list()
     constraints.extend(self.constraints)
     return ProjectionPartitionedEdge(presubvertex, postsubvertex,
                                      constraints)
コード例 #2
0
 def __init__(self, presubvertex, postsubvertex, constraints):
     ProjectionPartitionedEdge.__init__(self, presubvertex, postsubvertex,
                                        constraints)
     AbstractFilterableEdge.__init__(self)
     self._synapse_delay_rows = None
コード例 #3
0
 def __init__(self, presubvertex, postsubvertex, constraints):
     ProjectionPartitionedEdge.__init__(self, presubvertex, postsubvertex,
                                        constraints)
     AbstractFilterableEdge.__init__(self)
コード例 #4
0
 def create_subedge(
         self, pre_subvertex, post_subvertex, label=None):
     return ProjectionPartitionedEdge(
         self._synapse_information, pre_subvertex, post_subvertex, label)
コード例 #5
0
 def __init__(self, presubvertex, postsubvertex, constraints):
     ProjectionPartitionedEdge.__init__(self, presubvertex, postsubvertex,
                                        constraints)
     AbstractFilterableEdge.__init__(self)
     self._synapse_delay_rows = None