diff --git a/docs/cuopt/source/introduction.rst b/docs/cuopt/source/introduction.rst index 3ea9b91d49..f7358c6c26 100644 --- a/docs/cuopt/source/introduction.rst +++ b/docs/cuopt/source/introduction.rst @@ -120,6 +120,7 @@ cuOpt supports the following APIs: - `Routing (TSP, VRP, and PDP) - Server `_ - Third-party modeling languages - `AMPL `_ + - `GAMS `_ - `PuLP `_ diff --git a/docs/cuopt/source/lp-features.rst b/docs/cuopt/source/lp-features.rst index ae4abac25b..29a7e6f5c0 100644 --- a/docs/cuopt/source/lp-features.rst +++ b/docs/cuopt/source/lp-features.rst @@ -11,6 +11,7 @@ The LP solver can be accessed in the following ways: Supported modeling languages: - AMPL + - GAMS - PuLP - **C API**: A native C API that provides direct low-level access to cuOpt's LP capabilities, enabling integration into any application or system that can interface with C. diff --git a/docs/cuopt/source/milp-features.rst b/docs/cuopt/source/milp-features.rst index 28926bf2ac..17693a5b50 100644 --- a/docs/cuopt/source/milp-features.rst +++ b/docs/cuopt/source/milp-features.rst @@ -11,6 +11,7 @@ The MILP solver can be accessed in the following ways: Currently supported solvers: - AMPL + - GAMS - PuLP - **C API**: A native C API that provides direct low-level access to cuOpt's MILP solver, enabling integration into any application or system that can interface with C. diff --git a/docs/cuopt/source/thirdparty_modeling_languages/index.rst b/docs/cuopt/source/thirdparty_modeling_languages/index.rst index a6ba110f04..3fa6c54664 100644 --- a/docs/cuopt/source/thirdparty_modeling_languages/index.rst +++ b/docs/cuopt/source/thirdparty_modeling_languages/index.rst @@ -9,6 +9,12 @@ AMPL Support AMPL can be used with near zero code changes: simply switch to cuOpt as a solver to solve linear and mixed-integer programming problems. Please refer to the `AMPL documentation `_ for more information. Also, see the example notebook in the `colab `_. +-------------------------- +GAMS and GAMSPy Support +-------------------------- + +GAMS and GAMSPy models can be used with near zero code changes after setting up the solver link: simply switch to cuOpt as a solver to solve linear and mixed-integer programming problems (e.g. ``gams trnsport lp=cuopt``). Please refer to the `GAMS cuOpt link repository `_ for more information on how to setup GAMS and GAMSPy for cuOpt. Also, see the example notebook in the `cuopt-examples `_ repository. + -------------------------- PuLP Support --------------------------