Skip to content

Commit 3badc34

Browse files
fgittinsChrisRackauckas
authored andcommitted
Ensure reproducibility
1 parent e6adbcc commit 3badc34

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
[deps]
22
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
33
NonlinearSolve = "8913a72c-1f9b-4ce2-8d82-65094dcecaec"
4-
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
4+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
55
Roots = "f2b01f46-fcfa-551c-844a-d8ac1e96c665"
66
SciMLBenchmarks = "31c91b34-3c75-11e9-0341-95557aab0344"
77

88
[compat]
99
BenchmarkTools = "1"
1010
NonlinearSolve = "1, 2, 3, 4"
11-
Plots = "1.13"
1211
Roots = "2"
1312
SciMLBenchmarks = "0.1"

benchmarks/IntervalNonlinearProblem/simpleintervalrootfind.jmd

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ and thus can be assumed to be considered optimized from MATLAB's perspective. MA
1212
In comparison, Roots.jl:
1313

1414
```julia
15-
using Roots, BenchmarkTools
15+
using Roots, BenchmarkTools, Random
16+
17+
Random.seed!(42)
1618

1719
const N = 100_000;
1820
levels = 1.5 .* rand(N);

0 commit comments

Comments
 (0)