-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:Insper/ai_gym
- Loading branch information
Showing
1 changed file
with
39 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
""" | ||
Exposes the main classes of the search module: | ||
- State: the class that represents a state of the search. | ||
- SearchAlgorithm: the class that represents a search algorithm. | ||
- BuscaLargura: the class that implements the Breadth-first search algorithm. | ||
- BuscaProfundidade: the class that implements the Depth-first search algorithm. | ||
- BuscaProfundidadeIterativa: the class that implements the Iterative Depth-first search algorithm. | ||
- BuscaCustoUniforme: the class that implements the Uniform cost search algorithm. | ||
- BuscaGananciosa: the class that implements the Greedy search algorithm. | ||
- AEstrela: the class that implements the A* search algorithm. | ||
- SubidaMontanha: the class that implements the Hill Climbing search algorithm. | ||
- SubidaMontanhaEstocastico: the class that implements the Stochastic Hill Climbing search algorithm. | ||
""" | ||
|
||
from .Graph import State | ||
from .SearchAlgorithms import ( | ||
SearchAlgorithm, | ||
BuscaLargura, | ||
BuscaProfundidade, | ||
BuscaProfundidadeIterativa, | ||
BuscaCustoUniforme, | ||
BuscaGananciosa, | ||
AEstrela, | ||
) | ||
from .CSPAlgorithms import SubidaMontanha, SubidaMontanhaEstocastico | ||
|
||
__all__ = [ | ||
"State", | ||
"SearchAlgorithm", | ||
"BuscaLargura", | ||
"BuscaProfundidade", | ||
"BuscaProfundidadeIterativa", | ||
"BuscaCustoUniforme", | ||
"BuscaGananciosa", | ||
"AEstrela", | ||
"SubidaMontanha", | ||
"SubidaMontanhaEstocastico", | ||
] |