Skip to content

Commit

Permalink
Merge pull request #112 from gaurav-arya/ag-array
Browse files Browse the repository at this point in the history
Fix array construction in oval problem
  • Loading branch information
ChrisRackauckas authored Jul 30, 2023
2 parents 3dc8a76 + 78349f6 commit 12906b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/SDEProblemLibrary/src/SDEProblemLibrary.jl
Original file line number Diff line number Diff line change
Expand Up @@ -351,9 +351,9 @@ function oval2ModelExample(; largeFluctuations = false, useBigs = false, noiseLe
σ = σ2
end

u0 = [0.128483 1.256853 0.0030203 0.0027977 0.0101511 0.0422942 0.2391346
0.0008014 0.0001464 2.67e-05 4.8e-6 9e-7 0.0619917 1.2444292 0.0486676
199.9383546 137.4267984 1.5180203 1.5180203] #Fig 9B
u0 = [0.128483, 1.256853, 0.0030203, 0.0027977, 0.0101511, 0.0422942, 0.2391346,
0.0008014, 0.0001464, 2.67e-05, 4.8e-6, 9e-7, 0.0619917, 1.2444292, 0.0486676,
199.9383546, 137.4267984, 1.5180203, 1.5180203] #Fig 9B
if useBigs
u0 = big.(u0)
end
Expand Down

0 comments on commit 12906b4

Please sign in to comment.