Skip to content

Commit a0a8c38

Browse files
authored
Merge pull request #2341 from jsiirola/remove-pico
Remove the PICO solver interface
2 parents b480182 + 9144bb9 commit a0a8c38

20 files changed

+23
-863
lines changed

examples/pyomo/diet/README.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Files:
9595
diet.dat
9696
diet2.mod - The AMPL model
9797
diet2.ampl - An AMPL script to solve the diet1 problem
98-
(This uses PICO, but other solvers could be used that
98+
(This uses CBC, but other solvers could be used that
9999
can read in AMPL *.nl files.)
100100

101101
Run: ampl diet2.ampl

examples/pyomo/diet/diet2.ampl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
model diet2.mod;
22
data diet.dat;
3-
option solver cplex;
3+
option solver cbc;
44
solve;

pyomo/environ/tests/test_package_layout.py

-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
join('solvers', 'tests', 'mip', 'cbc'),
3737
join('solvers', 'tests', 'mip', 'cplex'),
3838
join('solvers', 'tests', 'mip', 'glpk'),
39-
join('solvers', 'tests', 'mip', 'pico'),
4039
join('solvers', 'tests', 'piecewise_linear', 'baselines'),
4140
join('solvers', 'tests', 'piecewise_linear', 'kernel_baselines'),
4241
join('solvers', 'tests', 'piecewise_linear', 'kernel_problems'),

0 commit comments

Comments
 (0)