Graph Convolutional Branch and Bound v1.0.0
A TSP solver that combines a graph convolutional network with a 1-Tree branch-and-bound.
Loading...
Searching...
No Matches
Public Attributes | List of all members
ListIterator Struct Reference

The iterator for the List. More...

#include <linked_list.h>

Public Attributes

Listlist
 The List to iterate.
 
DllElemcurr
 The current DllElem (element) of the List.
 
size_t index
 The current index of the element in the List.
 

Detailed Description

The iterator for the List.

Definition at line 43 of file linked_list.h.

Member Data Documentation

◆ curr

DllElem* ListIterator::curr

The current DllElem (element) of the List.

Definition at line 45 of file linked_list.h.

◆ index

size_t ListIterator::index

The current index of the element in the List.

Definition at line 46 of file linked_list.h.

◆ list

List* ListIterator::list

The List to iterate.

Definition at line 44 of file linked_list.h.