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

A reduced form of an Edge in the Graph, with only the source and destination Nodes. More...

#include <mst.h>

Public Attributes

unsigned short src
 The source Node of the Edge.
 
unsigned short dest
 The destination Node of the Edge.
 

Detailed Description

A reduced form of an Edge in the Graph, with only the source and destination Nodes.

Definition at line 21 of file mst.h.

Member Data Documentation

◆ dest

unsigned short ConstrainedEdge::dest

The destination Node of the Edge.

Definition at line 23 of file mst.h.

◆ src

unsigned short ConstrainedEdge::src

The source Node of the Edge.

Definition at line 22 of file mst.h.