We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de52b91 commit 4830963Copy full SHA for 4830963
libs/librrgraph/src/base/rr_graph_storage.h
@@ -737,6 +737,16 @@ class t_rr_graph_storage {
737
*/
738
void set_virtual_clock_network_root_idx(RRNodeId virtual_clock_network_root_idx);
739
740
+ /**
741
+ * @brief Removes a given list of RRNodes from the RR Graph
742
+ * This method should be called after partition_edges has been called.
743
+ * @note This a very expensive method, so should be called only when necessary. It is better
744
+ * to not add nodes in the first place, instead of relying on this method to remove nodes.
745
+ *
746
+ * @param nodes list of RRNodes to be removed
747
+ */
748
+ void remove_nodes(const std::vector<RRNodeId>& nodes);
749
+
750
/****************
751
* Edge methods *
752
****************/
0 commit comments