File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
src/multivariate/solvers/first_order
test/multivariate/solvers/first_order Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 3030
3131
3232function Base. summary (io:: IO , s:: NGMRES )
33- print (io, " Nonlinear GMRES preconditioned with " )
33+ print (io, " Nonlinear GMRES ( preconditioned with " )
3434 summary (io, s. nlprecon)
3535 print (io, " )" )
3636 return
3737end
3838function Base. summary (io:: IO , s:: OACCEL )
39- print (io, " O-ACCEL preconditioned with " )
39+ print (io, " O-ACCEL ( preconditioned with " )
4040 summary (io, s. nlprecon)
4141 print (io, " )" )
4242 return
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ using Optim, Test
44@testset " N-GMRES" begin
55 method = NGMRES
66 solver = method ()
7+ test_summary (solver, " Nonlinear GMRES (preconditioned with Gradient Descent)" )
78
89 skip = (" Trigonometric" ,)
910 run_optim_tests (
9495@testset " O-ACCEL" begin
9596 method = OACCEL
9697 solver = method ()
98+ test_summary (solver, " O-ACCEL (preconditioned with Gradient Descent)" )
99+
97100 skip = (" Trigonometric" ,)
98101 run_optim_tests (
99102 solver;
You can’t perform that action at this time.
0 commit comments