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 28c848a commit fdda2ebCopy full SHA for fdda2eb
vpr/src/route/route_common.h
@@ -5,15 +5,6 @@
5
#include "vtr_vector.h"
6
7
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
17
/* Used by the heap as its fundamental data structure.
18
* Each heap element represents a partial route.
19
*
0 commit comments