-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: jparisu <[email protected]>
- Loading branch information
Showing
22 changed files
with
128 additions
and
158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,11 @@ | ||
Colab | ||
IArena | ||
IGameRules | ||
IMovement | ||
IPosition | ||
IPlayer | ||
Tic | ||
Tac | ||
Toe | ||
conda | ||
NQueens |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
|
||
.. _glossary: | ||
|
||
######## | ||
Glossary | ||
######## | ||
|
||
.. glossary:: | ||
|
||
Arena | ||
A class that represents the game flow. Uses one GameRule and several players to play a game, returning the final score. | ||
|
||
GameRule | ||
A class that defines the rules of a game. It contains methods to help creating the game flow. | ||
|
||
Movement | ||
A class that represents a movement in a game. Along with GameRules, generates new Positions given a source one. | ||
|
||
Player | ||
A class that represents a player in a game. It contains the method to return a movement given a position. | ||
|
||
Position | ||
A class that represents a specific state of a game. Along with the GameRules, it defines the game. | ||
|
||
Score | ||
A class that represents the score of a terminated game. Each player has its own score. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ Installation | |
Google Colab | ||
============ | ||
|
||
Using :ref:`Google Colab <https://colab.google>` is the easiest way to get started. | ||
Using `Google Colab <https://colab.google>` is the easiest way to get started. | ||
Just add in the first cell of your notebook: | ||
|
||
.. code-block:: python | ||
|
@@ -35,13 +35,22 @@ From a command prompt, you can install it in a conda environment inside Anaconda | |
.. code-block:: bash | ||
conda install git | ||
pip install --upgrade git+https://github.com/jparisu/[email protected] | ||
pip install --upgrade git+https://github.com/jparisu/IArena.git | ||
=========================== | ||
Install with pip | ||
=========================== | ||
|
||
To install the package with ``pip``, you can use the following command: | ||
|
||
.. code-block:: bash | ||
pip install --upgrade git+https://github.com/jparisu/IArena.git | ||
=========== | ||
Coming soon | ||
=========== | ||
|
||
- Installation from source | ||
- Installation via ``pip`` | ||
- Installation via ``conda`` |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.