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
tsp_instance_reader.h
Go to the documentation of this file.
1
15#ifndef BRANCHANDBOUND1TREE_TSP_INSTANCE_READER_H
16#define BRANCHANDBOUND1TREE_TSP_INSTANCE_READER_H
18
19
25void read_tsp_lib_file(Graph * graph, char * filename);
26
27
33void read_tsp_csv_file(Graph * graph, char * filename);
34
35
36#endif //BRANCHANDBOUND1TREE_TSP_INSTANCE_READER_H
The data structures to model the Graph.
Structure of a Graph.
Definition: graph.h:51
void read_tsp_lib_file(Graph *graph, char *filename)
Reads a .tsp file and stores the data in the Graph.
void read_tsp_csv_file(Graph *graph, char *filename)
Reads a .csv file and stores the data in the Graph.