preview.mp4
pip install gamspy
GAMSPy is a mathematical optimization package that combines the power of the high performance GAMS execution system and flexibility of the Python language. It includes all GAMS symbols (Set, Alias, Parameter, Variable, and Equation) to compose mathematical models, a math package, and various utility functions.
The official documentation is hosted on GAMSPy Readthedocs.
GAMSPy makes extensive use of set based operations -- the absence of any explicit looping, indexing, etc., in native Python. These things are taking place, of course, just “behind the scenes” in optimized, pre-compiled C code.
Set based approach has many advantages:
- Results in more concise Python code -- avoids inefficient and difficult to read for loops
- Closely resembles standard mathematical notation
- Easier to read
- Fewer lines of code generally means fewer bugs
Here are just a few of the things that GAMSPy does well:
- Specify model algebra in Python natively
- Combines the flexibility of Python programming flow controls and the power of model specification in GAMS
- Test a variety of solvers on a model by changing only one line
For usage questions, the best place to go to is GAMSPy Documentation. General questions and discussions can also take place on the GAMSPy Discourse Platform.