From bdd6e3b29bac3c8c886bdb819508d03e86c0f598 Mon Sep 17 00:00:00 2001 From: Pierre Dejoue Date: Thu, 21 Apr 2022 01:04:32 +0200 Subject: [PATCH] Add to the testbed report the result of the Delaunay test --- testbed/main.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/testbed/main.cc b/testbed/main.cc index 007721b..422e76d 100644 --- a/testbed/main.cc +++ b/testbed/main.cc @@ -182,6 +182,7 @@ int main(int argc, char* argv[]) cout << "Total number of points = " << (polyline.size() + points_in_holes + steiner.size()) << endl; cout << "Number of triangles = " << triangles.size() << endl; + cout << "Is Delaunay = " << (IsDelaunay(triangles) ? "true" : "false") << endl; cout << "Elapsed time (ms) = " << dt * 1000.0 << endl; MainLoop(zoom);