Skip to content

Commit

Permalink
Removed requiring for theta*
Browse files Browse the repository at this point in the history
  • Loading branch information
Yonaba committed Mar 1, 2013
1 parent a82cf73 commit 8bb359d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions jumper/pathfinder.lua
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,7 @@ if (...) then

-- Available search algorithms
local Finders = {
['ASTAR'] = require (_PATH .. '.search.astar'),
['THETASTAR'] = require (_PATH .. '.search.thetastar'),
['ASTAR'] = require (_PATH .. '.search.astar'),
['DIJKSTRA'] = require (_PATH .. '.search.dijkstra'),
['BFS'] = require (_PATH .. '.search.bfs'),
['DFS'] = require (_PATH .. '.search.dfs'),
Expand Down

0 comments on commit 8bb359d

Please sign in to comment.