Add to the testbed report the result of the Delaunay test

This commit is contained in:
Pierre Dejoue 2022-04-21 01:04:32 +02:00
parent dbc52ace16
commit bdd6e3b29b
1 changed files with 1 additions and 0 deletions

View File

@ -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);