(self)
| 173 | return len(self.nodes.keys()) |
| 174 | @property |
| 175 | def edge_count(self): |
| 176 | count = 0 |
| 177 | for k,d in self.edges.items(): |
| 178 | count += len(d.keys()) |
| 179 | return count |
| 180 | |
| 181 | def set_init_node(self,node:Union[GID,ExecutionNode]): |
| 182 | if isinstance(node,ExecutionNode): |
nothing calls this directly
no outgoing calls
no test coverage detected