From ac937f453f77bbec882d1bab5311b237ec29c526 Mon Sep 17 00:00:00 2001 From: Gleb Date: Thu, 18 Jan 2024 17:50:36 +1100 Subject: [PATCH] Doc fixes: intro, AMPL solver options #231 --- doc/source/features-guide.rst | 4 ++-- doc/source/model-guide.rst | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/doc/source/features-guide.rst b/doc/source/features-guide.rst index 29704a5e9..4d44d9d6a 100644 --- a/doc/source/features-guide.rst +++ b/doc/source/features-guide.rst @@ -28,8 +28,8 @@ We distinguish between :ref:`ampl-solver-options` and :ref:`native-options`. AMPL solver options ----------------------------- -AMPL solver options provide a unified interface to the underlying solver's -configuration: +AMPL solver options provide a unified interface to +MP parameters, as well as underlying solver's configuration: .. code-block:: ampl diff --git a/doc/source/model-guide.rst b/doc/source/model-guide.rst index 6869609e4..19e7da74c 100644 --- a/doc/source/model-guide.rst +++ b/doc/source/model-guide.rst @@ -13,6 +13,8 @@ Ever wondered how to model logical and non-linear constraints? For example: - Piecewise-linear approximation of *y = sin(x)*. +MP automates many of such modeling tasks by reformulating AMPL nonlinear +constraints suitably for the given solver. A series of small modeling tasks like these are handled in the `MP Modeling Series `_, while below follows a comprehensive guide.