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

A Set is a node in the Forest. More...

#include <mfset.h>

Public Attributes

struct SetparentSet
 Pointer to the parent Set in a tree representation of the Forest.
 
unsigned short rango
 Rank of the Set, used to optimize the find operation.
 
Node curr
 Current Node.
 
unsigned short num_in_forest
 Number of the position of the Set in the Forest.
 

Detailed Description

A Set is a node in the Forest.

Definition at line 19 of file mfset.h.

Member Data Documentation

◆ curr

Node Set::curr

Current Node.

Definition at line 22 of file mfset.h.

◆ num_in_forest

unsigned short Set::num_in_forest

Number of the position of the Set in the Forest.

Definition at line 23 of file mfset.h.

◆ parentSet

struct Set* Set::parentSet

Pointer to the parent Set in a tree representation of the Forest.

Definition at line 20 of file mfset.h.

◆ rango

unsigned short Set::rango

Rank of the Set, used to optimize the find operation.

Definition at line 21 of file mfset.h.