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

The double linked List element. More...

#include <linked_list.h>

Public Attributes

void * value
 The value of the element, void pointer to be able to store any type of data.
 
struct DllElemnext
 The next element in the List.
 
struct DllElemprev
 The previous element in the List.
 

Detailed Description

The double linked List element.

Definition at line 27 of file linked_list.h.

Member Data Documentation

◆ next

struct DllElem* DllElem::next

The next element in the List.

Definition at line 29 of file linked_list.h.

◆ prev

struct DllElem* DllElem::prev

The previous element in the List.

Definition at line 30 of file linked_list.h.

◆ value

void* DllElem::value

The value of the element, void pointer to be able to store any type of data.

Definition at line 28 of file linked_list.h.