Skip to content

Commit c5e813c

Browse files
committedSep 3, 2018
add cdt2d to bench table
1 parent f0a5bbc commit c5e813c

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed
 

‎README.md

+1
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ Benchmark results against other Delaunay JS libraries
9797
[delaunay‑fast](https://github.com/ironwallaby/delaunay) | 3.8s | 132s | 4s | 138s | 12.57s | 399s | timeout | timeout
9898
[delaunay](https://github.com/darkskyapp/delaunay) | 4.85s | 156s | 5.73s | 178s | 15.05s | 326s | timeout | timeout
9999
[delaunay‑triangulate](https://github.com/mikolalysenko/delaunay-triangulate) | 2.24s | OOM | 2.04s | OOM | OOM | OOM | 1.51s | OOM
100+
[cdt2d](https://github.com/mikolalysenko/cdt2d) | 45s | timeout | 51s | timeout | 118s | timeout | 17s | timeout
100101

101102
## Papers
102103

‎bench.js

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import Delaunator from './index.js';
77
// import delaunaySlow from 'delaunay';
88
// import {voronoi} from 'd3-voronoi';
99
// import delaunayTriangulate from 'delaunay-triangulate';
10+
// import cdt2d from 'cdt2d';
1011

1112
function triangulate(points) {
1213
Delaunator.from(points);
@@ -16,6 +17,7 @@ function triangulate(points) {
1617
// delaunayFast.triangulate(points);
1718
// delaunaySlow.triangulate(points);
1819
// delaunayTriangulate(points);
20+
// cdt2d(points);
1921
}
2022

2123
const distributions = [uniform, gaussian, grid, degenerate];

0 commit comments

Comments
 (0)
Please sign in to comment.