Last active
December 16, 2015 04:59
-
-
Save reinh/5381198 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
class Dijkstra extends PathFinder | |
heuristic: -> 0 | |
class AStar extends PathFinder | |
heuristic: (start, finish) -> | |
_.max _.map [start.x - finish.x, start.y - finish.y], Math.abs | |
class DrunkAStar extends PathFinder | |
heuristic: Math.random |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment