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

The list of open SubProblems. More...

#include <b_and_b_data.h>

Public Attributes

SubProblemElemhead
 The head of the list.
 
SubProblemElemtail
 The tail of the list.
 
size_t size
 The size of the list.
 

Detailed Description

The list of open SubProblems.

Definition at line 87 of file b_and_b_data.h.

Member Data Documentation

◆ head

SubProblemElem* SubProblemsList::head

The head of the list.

Definition at line 88 of file b_and_b_data.h.

◆ size

size_t SubProblemsList::size

The size of the list.

Definition at line 90 of file b_and_b_data.h.

◆ tail

SubProblemElem* SubProblemsList::tail

The tail of the list.

Definition at line 89 of file b_and_b_data.h.