We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95185af commit f7ddde1Copy full SHA for f7ddde1
1 file changed
pathfinding/finder/best_first.py
@@ -4,7 +4,7 @@
4
5
class BestFirst(AStarFinder):
6
"""
7
- Similar to the default A* algorithm from a_star.
+ Best-First implementation, similar to the default A* algorithm from a_star.
8
9
def __init__(self, heuristic=None, weight=1,
10
diagonal_movement=DiagonalMovement.never,
0 commit comments