Graph Convolutional Branch and Bound v1.0.0
A TSP solver that combines a graph convolutional network with a 1-Tree branch-and-bound.
|
This file contains the definition of the Minimum Spanning Tree operations. More...
#include "mst.h"
Go to the source code of this file.
Functions | |
void | create_mst (MST *mst, const Node *nodes, unsigned short num_nodes) |
Create a Minimum Spanning Tree from a set of Nodes. | |
void | add_edge (MST *tree, const Edge *edge) |
Add an Edge to the MST. | |
void | print_mst (const MST *tree) |
Print the MST, printing all the information it contains. | |
void | print_mst_original_weight (const MST *tree, const Graph *graph) |
Print the MST, printing all the information it contains. | |
This file contains the definition of the Minimum Spanning Tree operations.
Repo: https://github.com/LorenzoSciandra/GraphConvolutionalBranchandBound
Definition in file mst.c.
void print_mst | ( | const MST * | mst | ) |