From bad5c476749c99030767d1f67ae5cbe9698c99f5 Mon Sep 17 00:00:00 2001 From: Jaron Kent-Dobias Date: Sat, 22 Dec 2018 14:30:54 -0500 Subject: system size now can take on non-integer values --- lib/include/graph.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/include') 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 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); }; -- cgit v1.2.3-54-g00ecf