Skip to content

Commit

Permalink
Fix http URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
fdabrandao committed Sep 8, 2023
1 parent 208ea20 commit 390dbcb
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions docs/source/getting-started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ Installation
The AMPL API can function as an add-on to any existing AMPL installation.
If you do not yet have an AMPL installation on the computer where you will
be working with the API, see our
`demo page <http://ampl.com/try-ampl/download-a-free-demo/>`_ or
`trial page <http://ampl.com/try-ampl/request-a-full-trial/>`_ to download a
`demo page <https://ampl.com/try-ampl/download-a-free-demo/>`_ or
`trial page <https://ampl.com/try-ampl/request-a-full-trial/>`_ to download a
working version that can be installed quickly.

In order to install the latest version of the R API you just need to run:
Expand Down
4 changes: 2 additions & 2 deletions docs/source/reference/rcon_entitycpp.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Constraint
constraint is scalar, its values can be accessed via functions like
:meth:`~.Constraint.body` and :meth:`~.Constraint.dual`.
All the AMPL suffixes for constraints (see
http://www.ampl.com/NEW/suffbuiltin.html)
https://www.ampl.com/NEW/suffbuiltin.html)
are available through methods of this class with the same name (and methods
of ConstraintInstance for indexed constraints).

Expand All @@ -32,7 +32,7 @@ Constraint

Check if the constraint is a logical constraint. The available suffixes
differ between logical and non logical constraints. See
http://www.ampl.com/NEW/suffbuiltin.html for a list of the available
https://www.ampl.com/NEW/suffbuiltin.html for a list of the available
suffixes for algebraic constraints. The suffixes available for logical
constraints are marked on the method description by "Valid only for logical
constraints".
Expand Down
2 changes: 1 addition & 1 deletion docs/source/reference/rcon_instancecpp.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ConstraintInstance
This class represent an instance of a constraint.

In general, all AMPL suffixes for a constraint are available through methods
with the same name in this class. See http://www.ampl.com/NEW/suffbuiltin.html
with the same name in this class. See https://www.ampl.com/NEW/suffbuiltin.html
for a list of the available suffixes.

Note that, since this class represents instances of both algebraic and logical
Expand Down
2 changes: 1 addition & 1 deletion docs/source/reference/robj_entitycpp.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Objective
the properties (corresponding to AMPL suffixes) of the objective instance
can be accessed through methods like :meth:`~.Objective.value`.
The methods have the same name of the corresponding AMPL suffixes.
See http://www.ampl.com/NEW/suffbuiltin.html for a list of the available
See https://www.ampl.com/NEW/suffbuiltin.html for a list of the available
suffixes.

All these methods throw an error if called on an entity which has been deleted
Expand Down
2 changes: 1 addition & 1 deletion docs/source/reference/robj_instancecpp.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ObjectiveInstance
the properties (corresponding to AMPL suffixes) of the objective instance
can be accessed through methods like :meth:`~.ObjectiveInstance.value`.
The methods have the same name of the corresponding AMPL suffixes.
See http://www.ampl.com/NEW/suffbuiltin.html for a list of the available
See https://www.ampl.com/NEW/suffbuiltin.html for a list of the available
suffixes.

All these methods throw an error if called on an entity which has been deleted
Expand Down
2 changes: 1 addition & 1 deletion docs/source/reference/rvar_entitycpp.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Variable
variable, all the properties of the variable instance can be accessed
through methods like :meth:`~.Variable.value`. The methods have the
same name of the corresponding AMPL suffixes.
See http://www.ampl.com/NEW/suffbuiltin.html for a list of the available
See https://www.ampl.com/NEW/suffbuiltin.html for a list of the available
suffixes.

All these methods throw an error if called on an entity which has been deleted
Expand Down
2 changes: 1 addition & 1 deletion docs/source/reference/rvar_instancecpp.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ VariableInstance
of use when dealing with scalar variables.

All AMPL suffixes for an algebraic variable are available through methods with
the same name in this class. See http://www.ampl.com/NEW/suffbuiltin.html
the same name in this class. See https://www.ampl.com/NEW/suffbuiltin.html
for a list of the available suffixes.

All the accessors in this class throw an error if the instance
Expand Down

0 comments on commit 390dbcb

Please sign in to comment.