Graph Convolutional Branch and Bound v1.0.0
A TSP solver that combines a graph convolutional network with a 1-Tree branch-and-bound.
|
The double linked list. More...
#include <linked_list.h>
Public Attributes | |
DllElem * | head |
The head of the list as a DllElem. | |
DllElem * | tail |
The tail of the list as a DllElem. | |
size_t | size |
The current size of the List. | |
The double linked list.
Definition at line 35 of file linked_list.h.
DllElem* List::head |
The head of the list as a DllElem.
Definition at line 36 of file linked_list.h.
size_t List::size |
The current size of the List.
Definition at line 38 of file linked_list.h.
DllElem* List::tail |
The tail of the list as a DllElem.
Definition at line 37 of file linked_list.h.