Skip to content

Commit

Permalink
Formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeingold committed Oct 24, 2024
1 parent cde6237 commit eac0734
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions benchmark/benchmarks.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ segment = Segment(Point(0, 0, 0), Point(1, 1, 1))
f(p) = LinearAlgebra.norm(to(p))
fv(p) = fill(f(p), 3)

rules = (
(name="GaussLegendre", rule=GaussLegendre(100)),
(name="GaussKronrod", rule=GaussKronrod()),
(name="HAdaptiveCubature", rule=HAdaptiveCubature())
)
integrands = (
(name="Scalar", f=f),
(name="Vector", f=fv)
(name = "Scalar", f = f),
(name = "Vector", f = fv)
)
rules = (
(name = "GaussLegendre", rule = GaussLegendre(100)),
(name = "GaussKronrod", rule = GaussKronrod()),
(name = "HAdaptiveCubature", rule = HAdaptiveCubature())
)

SUITE["Integrals"]["Meshes.Segment"] = let s = BenchmarkGroup()
Expand Down

0 comments on commit eac0734

Please sign in to comment.