From f861195c1416220c4039bda4d1cbf8c3aab07528 Mon Sep 17 00:00:00 2001 From: Jaron Kent-Dobias Date: Sun, 24 Feb 2019 17:19:52 -0500 Subject: added support for specifiying voronoi graphs with number of points and aspect ratio, and added support for "infinite" beta (everything has the some threshold) --- lib/include/graph.hpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib/include') 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); }; -- cgit v1.2.3-54-g00ecf