Top Level Namespace

Defined Under Namespace

Classes: AStar, FromTo

Instance Method Summary collapse

Instance Method Details

#node(x, y, index, cost, heuristic, totalCost) ⇒ Object



35
36
37
# File 'lib/A_Star.rb', line 35

def node x, y, index, cost, heuristic, totalCost
  return [x, y, index, cost, heuristic, totalCost]
end