| 28 | namespace graph |
| 29 | { |
| 30 | Graph::Graph(GraphID id, std::string name) |
| 31 | : _id(id), _name(std::move(name)), _nodes(), _edges(), _tensors(), _tagged_nodes(), _mtx() |
| 32 | { |
| 33 | } |
| 34 | |
| 35 | bool Graph::remove_node(NodeID nid) |
| 36 | { |
no outgoing calls
no test coverage detected