forked from KeithGalli/Connect4-Python
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
9 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Material adicional | ||
|
||
Além do código fonte disponível na pasta [src](../src/) e do material do [site](../content/index.md), este repositório também tem um conjunto de [slides](../slides/slides.pdf) que pode ser utilizado em uma aula expositiva. | ||
Além do código fonte disponível na pasta [src](../src/) e do material do [site](index.md), este repositório também tem um conjunto de [slides](./slides/slides.pdf) que pode ser utilizado em uma aula expositiva. |
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,8 @@ | ||
# Arquivos utilizados na implementação do agente | ||
|
||
* [connect4.py](../src/connect4.py) - Código fonte do jogo. | ||
* [connect4_with_ai.py](../src/connect4_with_ai.py) - Código fonte do jogo com o uso de um agente. | ||
* [Player.py](../src/Player.py) - Classe base para os jogadores. | ||
* [RandomPlayer.py](../src/RandomPlayer.py) - Agente aleatório. | ||
* [MinimaxPlayer.py](../src/MinimaxPlayer.py) - Agente minimax. | ||
* [connect4_ai_versus_ai.py](../src/connect4_ai_versus_ai.py) - Código fonte do jogo com o uso de dois agentes. |