Graph Convolutional Branch and Bound v1.0.0
A TSP solver that combines a graph convolutional network with a 1-Tree branch-and-bound.
|
#include <stdlib.h>
#include <stdio.h>
#include <stddef.h>
#include <string.h>
#include <assert.h>
#include <stdbool.h>
Go to the source code of this file.
Classes | |
struct | DllElem |
The double linked List element. More... | |
struct | List |
The double linked list. More... | |
struct | ListIterator |
The iterator for the List. More... | |
Macros | |
#define | BRANCHANDBOUND1TREE_LINKED_LIST_H |
Typedefs | |
typedef struct DllElem | DllElem |
The double linked List element. | |
#define BRANCHANDBOUND1TREE_LINKED_LIST_H |
Definition at line 23 of file linked_list.h.