diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2019-01-24 14:32:04 -0500 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2019-01-24 14:32:04 -0500 |
commit | 9c5779adc0a52cb88ccbfa315cf11544f00148bb (patch) | |
tree | 895c71552a1b5fad3f09d274869dfe378f198cb6 /lib/include | |
parent | 747f0c3df40e08d1b9aaa15bee614fae4bdb008b (diff) | |
download | fuse_networks-9c5779adc0a52cb88ccbfa315cf11544f00148bb.tar.gz fuse_networks-9c5779adc0a52cb88ccbfa315cf11544f00148bb.tar.bz2 fuse_networks-9c5779adc0a52cb88ccbfa315cf11544f00148bb.zip |
simplified random graph creation to only use uniform voronoi sites
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 ea08214..38c8edd 100644 --- a/lib/include/graph.hpp +++ b/lib/include/graph.hpp @@ -38,6 +38,6 @@ class graph { std::vector<edge> dual_edges; graph(unsigned int Nx, unsigned int Ny); - graph(double Lx, double Ly, std::mt19937& rng, double relax = 0.01, double step = 1.9); + graph(double Lx, double Ly, std::mt19937& rng); }; |