File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -42,10 +42,10 @@ enum e_representative_entry_method {
42
42
*/
43
43
class Cost_Entry {
44
44
public:
45
- float delay; // /<Delay value of the cost entry
45
+ float delay; // /<Delay value of the cost entry
46
46
float congestion; // /<Base cost value of the cost entry
47
- bool fill; // /<Boolean specifying whether this Entry was created as a result of the cost map
48
- // /<holes filling procedure
47
+ bool fill; // /<Boolean specifying whether this Entry was created as a result of the cost map
48
+ // /<holes filling procedure
49
49
50
50
Cost_Entry () {
51
51
delay = std::numeric_limits<float >::infinity ();
@@ -191,7 +191,7 @@ class PQ_Entry {
191
191
// A version of PQ_Entry that only calculates and stores the delay.
192
192
class PQ_Entry_Delay {
193
193
public:
194
- RRNodeId rr_node; // index in device_ctx.rr_nodes that this entry represents
194
+ RRNodeId rr_node; // index in device_ctx.rr_nodes that this entry represents
195
195
float delay_cost; // the cost of the path to get to this node
196
196
197
197
PQ_Entry_Delay (RRNodeId set_rr_node, int /* switch_ind*/ , const PQ_Entry_Delay* parent);
You can’t perform that action at this time.
0 commit comments