Skip to content

Commit

Permalink
Merge branch 'main' of github.com:Insper/ai_gym
Browse files Browse the repository at this point in the history
  • Loading branch information
fbarth committed Oct 2, 2023
2 parents 1118af5 + 478db6e commit 3898d8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aigyminsper/search/SearchAlgorithms.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def search (self, initialState, pruning='without', trace=False):
if (n.state.is_goal()):
return n
# iterate trought all successors
for i in n.state.sucessors():
for i in n.state.successors():

new_n = Node(i,n)
# without pruning
Expand Down

0 comments on commit 3898d8a

Please sign in to comment.