Skip to content

Commit 9390e96

Browse files
Merge pull request #3352 from verilog-to-routing/rr_graph_remove_edges_comment
Fix comment in rr graph remove edges
2 parents 8b907a5 + cd9698c commit 9390e96

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

libs/librrgraph/src/base/rr_graph_builder.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ class RRGraphBuilder {
356356
* This method does not preserve the order of edges. If you're
357357
* calling it after partition_edges has been called, you will
358358
* need to call partition_edges again.
359-
* This operation is O(#RR Graph edges) and should not be called frequently.
359+
* This operation is O(#Edges to be removed) and should not be called frequently.
360360
*
361361
* @param rr_edges_to_remove list of RREdgeIds to be removed
362362
*/

libs/librrgraph/src/base/rr_graph_storage.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -788,7 +788,7 @@ class t_rr_graph_storage {
788788
* This method does not preserve the order of edges. If you're
789789
* calling it after partition_edges has been called, you will
790790
* need to call partition_edges again.
791-
* This operation is O(#RR Graph edges) and should not be called frequently.
791+
* This operation is O(#Edges to be removed) and should not be called frequently.
792792
*
793793
* @param rr_edges_to_remove list of RREdgeIds to be removed
794794
*/

0 commit comments

Comments
 (0)