summaryrefslogtreecommitdiff
path: root/lib/include/wolff/graph.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/include/wolff/graph.hpp')
-rw-r--r--lib/include/wolff/graph.hpp30
1 files changed, 0 insertions, 30 deletions
diff --git a/lib/include/wolff/graph.hpp b/lib/include/wolff/graph.hpp
deleted file mode 100644
index 65b3941..0000000
--- a/lib/include/wolff/graph.hpp
+++ /dev/null
@@ -1,30 +0,0 @@
-
-#ifndef WOLFF_GRAPH_H
-#define WOLFF_GRAPH_H
-
-#include <cmath>
-#include <vector>
-
-namespace wolff {
-
-#include "types.h"
-
-class graph {
- public:
- D_t D;
- L_t L;
- v_t ne;
- v_t nv;
- std::vector<std::vector<v_t>> adjacency;
- std::vector<std::vector<double>> coordinate;
-
- graph();
- graph(D_t D, L_t L);
-
- void add_ghost();
-};
-
-}
-
-#endif
-