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
List Struct Reference

The double linked list. More...

#include <linked_list.h>

Public Attributes

DllElemhead
 The head of the list as a DllElem.
 
DllElemtail
 The tail of the list as a DllElem.
 
size_t size
 The current size of the List.
 

Detailed Description

The double linked list.

Definition at line 35 of file linked_list.h.

Member Data Documentation

◆ head

DllElem* List::head

The head of the list as a DllElem.

Definition at line 36 of file linked_list.h.

◆ size

size_t List::size

The current size of the List.

Definition at line 38 of file linked_list.h.

◆ tail

DllElem* List::tail

The tail of the list as a DllElem.

Definition at line 37 of file linked_list.h.