Skip to content

Commit fdda2eb

Browse files
committed
vpr: Remove unused t_heap_prev struct
1 parent 28c848a commit fdda2eb

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

vpr/src/route/route_common.h

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,6 @@
55
#include "vtr_vector.h"
66

77

8-
struct t_heap_prev {
9-
t_heap_prev(int to, int from, short edge)
10-
: to_node(to), from_node(from), from_edge(edge) {}
11-
int to_node = NO_PREVIOUS; //The target node
12-
int from_node = NO_PREVIOUS; //The previous node used to connect to 'to_node'
13-
short from_edge = NO_PREVIOUS; //The edge used to connect from 'from_node' to 'to_node'
14-
};
15-
16-
178
/* Used by the heap as its fundamental data structure.
189
* Each heap element represents a partial route.
1910
*

0 commit comments

Comments
 (0)