summaryrefslogtreecommitdiff
path: root/lib/include/graph.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/include/graph.hpp')
-rw-r--r--lib/include/graph.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/include/graph.hpp b/lib/include/graph.hpp
index 38c8edd..1089925 100644
--- a/lib/include/graph.hpp
+++ b/lib/include/graph.hpp
@@ -24,7 +24,7 @@ class graph {
} vertex;
typedef struct edge {
- std::array<unsigned int, 2> v;
+ std::array<unsigned, 2> v;
coordinate r;
std::array<bool, 2> crossings;
} edge;
@@ -37,7 +37,7 @@ class graph {
std::vector<vertex> dual_vertices;
std::vector<edge> dual_edges;
- graph(unsigned int Nx, unsigned int Ny);
+ graph(unsigned Nx, unsigned Ny);
graph(double Lx, double Ly, std::mt19937& rng);
};