Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
1177492
Added new GAMS solver interface, writer, and solution loader. WIP: un…
Aug 7, 2025
2385654
Ran black -S -C on commited files
Aug 7, 2025
b36086f
Typo!
mrmundt Aug 7, 2025
e91e480
Added ignore checking for constant in the objective function during w…
Aug 7, 2025
b060096
Added support for add_options for multiple solver_options
Aug 8, 2025
96ba646
typo
Aug 8, 2025
b0f16a3
ran black formatter
Aug 8, 2025
dde656c
added add_options in the solver_interface
Aug 8, 2025
3476f72
Fixed bug with unable to create tmpdir. Updated test_gams_v2.py
Aug 8, 2025
ddfd98c
Merge branch 'main' into GAMS_new_solver_interface
AnhTran01 Aug 8, 2025
eb0a3db
Added handling single bounded variable case (None,#) or (#, None)
Aug 10, 2025
c6d2d01
Match solver interface and writer configs to prevent implicit definit…
Aug 11, 2025
2a6dcb7
Added new gams solver interface for test_all_solvers_list()
Aug 12, 2025
b6ead27
Fixed bug of handling valid ub when writing pyomo expression
Aug 12, 2025
89f80e0
Fixed bug when using ComponentMap to extract duals in gms_sol_reader.py
Aug 13, 2025
b0c3450
Corrected handling of solution_loader. Implemented bounded constraint…
Aug 14, 2025
a9df1d7
Added offdigit based on error log message suggestion
Aug 14, 2025
e04c89f
Merge branch 'main' into GAMS_new_solver_interface
mrmundt Aug 15, 2025
518758e
Fixed bug of extracting constraint dual when alias exits (for bounded…
Aug 18, 2025
a2ef9cc
Added aliases as part of parse_dat_results to be consistent with pars…
Aug 18, 2025
c33095d
Removed code duplication between the solver interface and writer by p…
Aug 18, 2025
f609ca2
Revised code based on John's review. WIP: Handling rehash within avai…
Aug 19, 2025
ec5aa6a
Re-added config into available and version, and deprecated test that …
Aug 19, 2025
e760a1c
Merge branch 'main' into GAMS_new_solver_interface
mrmundt Aug 19, 2025
7bb817b
Sanity check config.writer_config.put_results_format without setdefault
Aug 20, 2025
72beeaf
Allow user to modify writer config via solver_options. Fixed bug of s…
Aug 20, 2025
3dc83ca
Merge branch 'Pyomo:main' into GAMS_new_solver_interface
AnhTran01 Aug 20, 2025
5c87b75
Corrected exeception type raised when solver return infeasible. Added…
Aug 20, 2025
d6aa9ff
Corrected test_gams_v2.py to match error raised. Corrected error mess…
Aug 20, 2025
aba0eed
Merge branch 'Pyomo:main' into GAMS_new_solver_interface
AnhTran01 Aug 20, 2025
f85d217
Prevent rewrite of termination condition in modelstat if the value is…
Aug 20, 2025
0e94742
Added an gams_solver_options (handled via solver_option in solve). Ad…
Aug 20, 2025
9d5758e
Divided solver and model termination condition into separate config.
Aug 21, 2025
d1285e3
Merge branch 'Pyomo:main' into GAMS_new_solver_interface
AnhTran01 Aug 21, 2025
2973d9c
Added unittest skipif for linux_3.9_slim and linux_3.12_numpy failed …
Aug 22, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions pyomo/contrib/solver/plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
from .solvers.gurobi_persistent import GurobiPersistent
from .solvers.gurobi_direct import GurobiDirect
from .solvers.highs import Highs
from .solvers.gams import GAMS


def load():
Expand All @@ -34,3 +35,6 @@ def load():
SolverFactory.register(
name='highs', legacy_name='highs', doc='Persistent interface to HiGHS'
)(Highs)
SolverFactory.register(name='gams', legacy_name='gams_v2', doc='Interface to GAMS')(
GAMS
)
Loading
Loading