Source code for bmtk.simulator.core.edge_population

[docs]class SimEdge(object): @property def node_id(self): raise NotImplementedError() @property def gid(self): raise NotImplementedError()
[docs]class EdgePopulation(object): @property def source_nodes(self): raise NotImplementedError() @property def target_nodes(self): raise NotImplementedError()
[docs] def initialize(self, network): raise NotImplementedError()