Skip to content

Commit 50e2270

Browse files
Use OptimizationNLPModels from branch
1 parent efa61e3 commit 50e2270

File tree

5 files changed

+700
-735
lines changed

5 files changed

+700
-735
lines changed

Diff for: benchmarks/OptimizationCUTEst/CUTEst_bounded.jmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ problems.
3535

3636
```julia
3737
optimizers = [
38-
Optimization.LBFGS(),
38+
#Optimization.LBFGS(),
3939
MOI.OptimizerWithAttributes(Ipopt.Optimizer, "print_level" => 0)
4040
]
4141

Diff for: benchmarks/OptimizationCUTEst/CUTEst_quadratic.jmd

+1-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ problems.
3535

3636
```julia
3737
optimizers = [
38-
Optimization.LBFGS(),
3938
MOI.OptimizerWithAttributes(Ipopt.Optimizer, "print_level" => 0)
4039
]
4140

@@ -90,7 +89,7 @@ Lastly, we examine the problems with a quadratic objective function and only lin
9089
constraints. There are 252 such problems in the suite.
9190

9291
```julia
93-
quad_problems = CUTEst.select(objtype="quadratic", contype="linear")
92+
quad_problems = CUTEst.select_sif_problems(objtype="quadratic", contype="linear")
9493

9594
# Analysis
9695
quad_results = run_benchmarks(quad_problems, optimizers)

Diff for: benchmarks/OptimizationCUTEst/CUTEst_unbounded.jmd

+1-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ problems.
3535

3636
```julia
3737
optimizers = [
38-
Optimization.LBFGS(),
3938
MOI.OptimizerWithAttributes(Ipopt.Optimizer, "print_level" => 0)
4039
]
4140

@@ -95,7 +94,7 @@ following figure shows the time to solution as a function of number of variables
9594
optimizer.
9695

9796
```julia
98-
eq_unb_problems = CUTEst.select(min_con=1, only_equ_con=true, only_free_var=true)
97+
eq_unb_problems = CUTEst.select_sif_problems(min_con=1, only_equ_con=true, only_free_var=true)
9998

10099
# Analysis
101100
eq_unb_results = run_benchmarks(eq_unb_problems, optimizers)

0 commit comments

Comments
 (0)