Graph Convolutional Branch and Bound v1.0.0
A TSP solver that combines a graph convolutional network with a 1-Tree branch-and-bound.
|
The implementation of the graph data structure. More...
Go to the source code of this file.
Functions | |
void | create_graph (Graph *graph, List *nodes_list, List *edges_list, GraphKind kind) |
Create a new instance of a Graph with all the needed parameters. | |
void | create_euclidean_graph (Graph *graph, List *nodes) |
Create a new instance of an euclidean graphs only the Nodes are necessary. | |
void | print_graph (const Graph *G) |
Print Nodes, Edges and other information of the Graph. | |
The implementation of the graph data structure.
Repo: https://github.com/LorenzoSciandra/GraphConvolutionalBranchandBound
Definition in file graph.c.