diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2019-02-24 17:19:52 -0500 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2019-02-24 17:19:52 -0500 |
commit | f861195c1416220c4039bda4d1cbf8c3aab07528 (patch) | |
tree | d9fefc81db9a471b1c1ec7ca640041365adfce30 /lib/include | |
parent | aca81428ac3e7385294d8fc871b9618b739a8109 (diff) | |
download | fuse_networks-f861195c1416220c4039bda4d1cbf8c3aab07528.tar.gz fuse_networks-f861195c1416220c4039bda4d1cbf8c3aab07528.tar.bz2 fuse_networks-f861195c1416220c4039bda4d1cbf8c3aab07528.zip |
added support for specifiying voronoi graphs with number of points and aspect ratio, and added support for "infinite" beta (everything has the some threshold)
Diffstat (limited to 'lib/include')
-rw-r--r-- | lib/include/graph.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/include/graph.hpp b/lib/include/graph.hpp index 1089925..032a4d1 100644 --- a/lib/include/graph.hpp +++ b/lib/include/graph.hpp @@ -39,5 +39,8 @@ class graph { graph(unsigned Nx, unsigned Ny); graph(double Lx, double Ly, std::mt19937& rng); + graph(unsigned n, double a, std::mt19937& rng); + + void helper(unsigned n, std::mt19937& rng); }; |