We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91c123b commit a610ef3Copy full SHA for a610ef3
bench/perf.jl
@@ -18,7 +18,10 @@ println("Benchmarking DistMesh.jl...")
18
# Algorithms to benchmark
19
#
20
21
-algos = [DistMeshSetup(deltat=0.1, distribution=:packed),DistMeshSetup(distribution=:packed)]
+algos = [DistMeshSetup(deltat=0.1, distribution=:packed),
22
+ DistMeshSetup(distribution=:packed),
23
+ DistMeshSetup(deltat=0.1, distribution=:packed,sort=true),
24
+ DistMeshSetup(distribution=:packed,sort=true)]
25
26
fn_torus(v) = (sqrt(v[1]^2+v[2]^2)-0.5)^2 + v[3]^2 - 0.25 # torus
27
fn_sphere(v) = sqrt(sum(v.^2)) -1
0 commit comments