| 537 | } |
| 538 | |
| 539 | py::object Graph_generate_linkgraph(py::object self, py::object weight){ |
| 540 | Graph& G_ = self.cast<Graph&>(); |
| 541 | std::string w = weight_to_string(weight); |
| 542 | Graph_L g_l = graph_to_linkgraph(G_, false, w, true, false); |
| 543 | G_.linkgraph_dirty = false; |
| 544 | G_.linkgraph_structure = g_l; |
| 545 | return py::none(); |
| 546 | } |
| 547 | |
| 548 | py::object Graph_nodes_subgraph(py::object self, py::list from_nodes) { |
| 549 | py::object G = self.attr("__class__")(); |
nothing calls this directly
no test coverage detected