File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 36
36
with :
37
37
version : ${{ matrix.version }}
38
38
arch : ${{ matrix.arch }}
39
- - uses : actions/cache@v1
39
+ - uses : actions/cache@v4
40
40
env :
41
41
cache-name : cache-artifacts
42
42
with :
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ function SolverCore.solve!(
12
12
if ! (equality_constrained (nlp) || unconstrained (nlp))
13
13
error (" DCI only works for equality constrained problems" )
14
14
end
15
- reset! (stats)
15
+ SolverCore . reset! (stats)
16
16
17
17
verbose = meta. verbose
18
18
Original file line number Diff line number Diff line change 49
49
@test stats. status == :first_order
50
50
51
51
nlp. meta. x0 .= 10.0
52
- reset! (solver)
52
+ SolverCore . reset! (solver)
53
53
54
54
stats = solve! (solver, nlp, stats)
55
55
@test isapprox (stats. solution, [1.0 ; 1.0 ], atol = 1e-6 )
82
82
zeros (1 ),
83
83
name = " shifted HS6" ,
84
84
)
85
- reset! (solver, nlp)
85
+ SolverCore . reset! (solver, nlp)
86
86
87
87
stats = solve! (solver, nlp, stats)
88
88
@test isapprox (stats. solution, [0.0 ; 0.0 ], atol = 1e-6 )
You can’t perform that action at this time.
0 commit comments