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.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/include/graph.hpp b/lib/include/graph.hpp
index d746ddd..c1ad4f0 100644
--- a/lib/include/graph.hpp
+++ b/lib/include/graph.hpp
@@ -36,6 +36,6 @@ class graph {
std::vector<edge> dual_edges;
graph(unsigned int Nx, unsigned int Ny);
- graph(unsigned int Nx, unsigned int Ny, std::mt19937& rng, double = 0.25);
+ graph(double Lx, double Ly, std::mt19937& rng, double relax = 0.01, double step = 1.9);
};