Skip to content

Commit

Permalink
loosen tolerance on optimization result
Browse files Browse the repository at this point in the history
  • Loading branch information
m-bossart committed May 2, 2024
1 parent 37d9ff9 commit 2b469ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_case_sensitivity.jl
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ end
callback = callback,
maxiters = 3,
)
@test isapprox(sol.u[1], 3.144000187737475, atol = 1e-8)
@test isapprox(sol.u[1], 3.144000187737475, atol = 1e-7)
#display(plot(scatter(y=H_values)))
#display(plot(scatter(y=loss_values)))
finally
Expand Down Expand Up @@ -318,7 +318,7 @@ end
callback = callback,
maxiters = 3,
)
@test isapprox(sol.u[1], 3.144001551579776, atol = 1e-8)
@test isapprox(sol.u[1], 3.144001551579776, atol = 1e-7)
#display(plot(scatter(y=H_values)))
#display(plot(scatter(y=loss_values)))
finally
Expand Down

0 comments on commit 2b469ad

Please sign in to comment.