Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion jumper/core/assert.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
if (...) then

-- Dependancies
local _PATH = (...):gsub('%.core.assert$','')
local _PATH = (...):gsub('%.core%.assert$','')
local Utils = require (_PATH .. '.core.utils')

-- Local references
Expand Down
2 changes: 1 addition & 1 deletion jumper/search/astar.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ if (...) then
local huge = math.huge

-- Dependancies
local _PATH = (...):match('(.+)%.search.astar$')
local _PATH = (...):match('(.+)%.search%.astar$')
local Heuristics = require (_PATH .. '.core.heuristics')
local Heap = require (_PATH.. '.core.bheap')

Expand Down
4 changes: 2 additions & 2 deletions jumper/search/jps.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
if (...) then

-- Dependancies
local _PATH = (...):match('(.+)%.search.jps$')
local _PATH = (...):match('(.+)%.search%.jps$')
local Heuristics = require (_PATH .. '.core.heuristics')
local Heap = require (_PATH.. '.core.bheap')

Expand Down Expand Up @@ -267,4 +267,4 @@ end
return nil
end

end
end
4 changes: 2 additions & 2 deletions jumper/search/thetastar.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

if (...) then

local _PATH = (...):gsub('%.search.thetastar$','')
local _PATH = (...):gsub('%.search%.thetastar$','')

-- Depandancies
local Heuristics = require (_PATH .. '.core.heuristics')
Expand Down Expand Up @@ -68,4 +68,4 @@ if (...) then
return astar_search(finder, startNode, endNode, clearance, toClear, overrideHeuristic, computeCost)
end

end
end