Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
tmigot committed Jan 27, 2021
1 parent ff481d3 commit fce7df4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test-stopping/test-unitaire-generic-stopping.jl
Expand Up @@ -8,8 +8,8 @@

show(stop0)

meta = StoppingMeta(tol_check = (atol,rtol,opt0) -> atol + rtol * opt0, list = ListStates(state0))
stop0_meta = GenericStopping(rosenbrock, meta, state0)
meta = StoppingMeta(tol_check = (atol,rtol,opt0) -> atol + rtol * opt0)
stop0_meta = GenericStopping(rosenbrock, meta, state0, list = ListStates(state0))
stop0_src = GenericStopping(rosenbrock, meta, cheap_stop_remote_control(), state0)
stop0_src_without_meta = GenericStopping(rosenbrock, StopRemoteControl(), state0,
tol_check = (atol,rtol,opt0) -> atol + rtol * opt0,
Expand Down

0 comments on commit fce7df4

Please sign in to comment.