Skip to content

Commit d271b8e

Browse files
committedSep 3, 2022
Fix broken OpenAi links
1 parent 6880e94 commit d271b8e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ in cooperation with a state-of-the-art Mixed Integer Linear Programming solver
2727
that acts as a controllable algorithm.
2828

2929
The underlying solver used is `SCIP <https://scip.zib.de/>`_, and the user facing API is
30-
meant to mimic the `OpenAI Gym <https://gym.openai.com/>`_ API (as much as possible).
30+
meant to mimic the `OpenAI Gym <https://www.gymlibrary.dev/>`_ API (as much as possible).
3131

3232
.. code-block:: python
3333

‎docs/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ picking the next variable to branch on. Ecole aims at exposing these algorithmic
3838
standard reinforcement learning API (agent / environment loop), in order to ease the exploration
3939
of new machine learning models and algorithms for learning data-driven policies.
4040

41-
Ecole's interface is inspired from `OpenAI Gym <https://gym.openai.com/>`_ and will look
41+
Ecole's interface is inspired from `OpenAI Gym <https://www.gymlibrary.dev/>`_ and will look
4242
familiar to reinforcement learning praticionners.
4343
The state-of-the-art Mixed Integer Linear Programming solver that acts as a controllable
4444
algorithm inside Ecole is `SCIP <https://scip.zib.de/>`_.

‎libecole/include/ecole/environment/environment.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ namespace ecole::environment {
2828
* Environments are the main abstraction exposed by Ecole.
2929
* They characterise the Markov Decision Process task to solve.
3030
* The interface to environments is meant to be close to that of
31-
* [OpenAi Gym](https://gym.openai.com/), with some differences nontheless due to the
31+
* [OpenAi Gym](https://www.gymlibrary.dev/), with some differences nontheless due to the
3232
* requirements of Ecole.
3333
*
3434
* @tparam Dynamics The ecole::environment::EnvironmentDynamics driving the initial state and transition of the

0 commit comments

Comments
 (0)
Please sign in to comment.