Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions docs/cuopt/source/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ cuOpt supports the following APIs:
- `Routing (TSP, VRP, and PDP) - Server <cuopt-server/quick-start.html>`_
- Third-party modeling languages
- `AMPL <https://www.ampl.com/>`_
- `GAMS <https://www.gams.com/>`_
- `PuLP <https://pypi.org/project/PuLP/>`_


Expand Down
1 change: 1 addition & 0 deletions docs/cuopt/source/lp-features.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 1 addition & 0 deletions docs/cuopt/source/milp-features.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
6 changes: 6 additions & 0 deletions docs/cuopt/source/thirdparty_modeling_languages/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://www.ampl.com/>`_ for more information. Also, see the example notebook in the `colab <https://colab.research.google.com/drive/1eEQik_pae4g_tJQ61QJFlO1fFBXazpBr?usp=sharing>`_.

--------------------------
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 <https://github.com/GAMS-dev/cuoptlink-builder>`_ for more information on how to setup GAMS and GAMSPy for cuOpt. Also, see the example notebook in the `cuopt-examples <https://github.com/NVIDIA/cuopt-examples>`_ repository.

--------------------------
PuLP Support
--------------------------
Expand Down