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 iterator for the List. More...
#include <linked_list.h>
Public Attributes | |
List * | list |
The List to iterate. | |
DllElem * | curr |
The current DllElem (element) of the List. | |
size_t | index |
The current index of the element in the List. | |
The iterator for the List.
Definition at line 43 of file linked_list.h.
DllElem* ListIterator::curr |
The current DllElem (element) of the List.
Definition at line 45 of file linked_list.h.
size_t ListIterator::index |
The current index of the element in the List.
Definition at line 46 of file linked_list.h.
List* ListIterator::list |
The List to iterate.
Definition at line 44 of file linked_list.h.