Skip to content

Commit

Permalink
Update turing.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
Vaibhavdixit02 authored Jan 5, 2024
1 parent 3b4d23c commit af6cc34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/turing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ p = [2.0]
u0 = zeros(2)
s_prob = SteadyStateProblem(f, u0, p)
s_sol = solve(s_prob, SSRootfind())
s_sol = solve(s_prob, DynamicSS(Tsit5(), abstol = 1e-4, reltol = 1e-3))
s_sol = solve(s_prob, DynamicSS(Tsit5()), abstol = 1e-4, reltol = 1e-3)

# true data is 1.00, 0.25
data = [1.05, 0.23]
Expand Down

0 comments on commit af6cc34

Please sign in to comment.