Skip to content

Commit cd66efd

Browse files
committed
remove old api set_coordinates from rr_node.cpp/.h files
1 parent 8eb33a7 commit cd66efd

File tree

2 files changed

+0
-10
lines changed

2 files changed

+0
-10
lines changed

vpr/src/route/rr_node.cpp

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,6 @@ void t_rr_node::set_type(t_rr_type new_type) {
5555
storage_->set_node_type(id_, new_type);
5656
}
5757

58-
/*
59-
* Pass in two coordinate variables describing location of node.
60-
* They do not have to be in any particular order.
61-
*/
62-
void t_rr_node::set_coordinates(short x1, short y1, short x2, short y2) {
63-
storage_->set_node_coordinates(id_, x1, y1, x2, y2);
64-
}
65-
6658
void t_rr_node::set_ptc_num(short new_ptc_num) {
6759
storage_->set_node_ptc_num(id_, new_ptc_num);
6860
}

vpr/src/route/rr_node.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,6 @@ class t_rr_node {
110110
public: //Mutators
111111
void set_type(t_rr_type new_type);
112112

113-
void set_coordinates(short x1, short y1, short x2, short y2);
114-
115113
void set_capacity(short);
116114

117115
void set_ptc_num(short);

0 commit comments

Comments
 (0)