forked from cmuparlay/parlaylib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdelaunay.cpp
37 lines (32 loc) · 1.06 KB
/
delaunay.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include <iostream>
#include <string>
#include <random>
#include <parlay/primitives.h>
#include <parlay/sequence.h>
#include <parlay/random.h>
#include "delaunay.h"
// **************************************************************
// Driver
// **************************************************************
int main(int argc, char* argv[]) {
auto usage = "Usage: delaunay <n>";
if (argc != 2) std::cout << usage << std::endl;
else {
point_id n;
try {n = std::stoi(argv[1]);}
catch (...) {std::cout << usage << std::endl; return 1;}
parlay::random_generator gen(0);
std::uniform_real_distribution<real> dis(0.0,1.0);
// generate n random points in a unit square
auto points = parlay::tabulate(n, [&] (point_id i) -> point {
auto r = gen[i];
return point{i, dis(r), dis(r)};});
parlay::internal::timer t("Time");
parlay::sequence<tri> result;
for (int i=0; i < 5; i++) {
result = delaunay(points);
t.next("delaunay");
}
std::cout << "number of triangles in the mesh = " << result.size() << std::endl;
}
}