| 4 | |
| 5 | |
| 6 | Graph::Graph() { |
| 7 | this->id = 0; |
| 8 | this->dirty_nodes = true; |
| 9 | this->dirty_adj = true; |
| 10 | this->linkgraph_dirty = true; |
| 11 | this->node_to_id = py::dict(); |
| 12 | this->id_to_node = py::dict(); |
| 13 | this->graph = py::dict(); |
| 14 | this->nodes_cache = py::dict(); |
| 15 | this->adj_cache = py::dict(); |
| 16 | } |
| 17 | |
| 18 | py::object Graph__init__(py::args args, py::kwargs kwargs) { |
| 19 | py::object self = args[0]; |
no outgoing calls