summaryrefslogtreecommitdiff
path: root/lib/graph.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/graph.h')
-rw-r--r--lib/graph.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/lib/graph.h b/lib/graph.h
deleted file mode 100644
index de06924..0000000
--- a/lib/graph.h
+++ /dev/null
@@ -1,22 +0,0 @@
-
-#pragma once
-
-#include <inttypes.h>
-#include <cmath>
-#include <stdlib.h>
-#include <vector>
-
-#include "types.h"
-
-class graph_t {
- public:
- v_t ne;
- v_t nv;
- std::vector<std::vector<v_t>> v_adj;
- std::vector<std::vector<double>> coordinate;
-
- graph_t(D_t D, L_t L);
- void add_ext();
-
-};
-