diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2018-12-22 14:30:54 -0500 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2018-12-22 14:30:54 -0500 |
commit | bad5c476749c99030767d1f67ae5cbe9698c99f5 (patch) | |
tree | c79c3af8525a1c7544537f52e4115344f4e32a5d /lib/include | |
parent | 09200a607661f739782a966807d31345485e2c41 (diff) | |
download | fuse_networks-bad5c476749c99030767d1f67ae5cbe9698c99f5.tar.gz fuse_networks-bad5c476749c99030767d1f67ae5cbe9698c99f5.tar.bz2 fuse_networks-bad5c476749c99030767d1f67ae5cbe9698c99f5.zip |
system size now can take on non-integer values
Diffstat (limited to 'lib/include')
-rw-r--r-- | lib/include/graph.hpp | 2 |
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); }; |