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

The element of the list of SubProblems. More...

#include <b_and_b_data.h>

Public Attributes

SubProblem subProblem
 The SubProblem.
 
struct SubProblemElemnext
 The next element of the list.
 
struct SubProblemElemprev
 The previous element of the list.
 

Detailed Description

The element of the list of SubProblems.

Definition at line 79 of file b_and_b_data.h.

Member Data Documentation

◆ next

struct SubProblemElem* SubProblemElem::next

The next element of the list.

Definition at line 81 of file b_and_b_data.h.

◆ prev

struct SubProblemElem* SubProblemElem::prev

The previous element of the list.

Definition at line 82 of file b_and_b_data.h.

◆ subProblem

SubProblem SubProblemElem::subProblem

The SubProblem.

Definition at line 80 of file b_and_b_data.h.