Class IDAStar
- java.lang.Object
-
- net.runelite.client.plugins.puzzlesolver.solver.pathfinding.Pathfinder
-
- net.runelite.client.plugins.puzzlesolver.solver.pathfinding.IDAStar
-
- Direct Known Subclasses:
IDAStarMM
public class IDAStar extends Pathfinder
An implementation of the IDA* algorithm. https://en.wikipedia.org/wiki/Iterative_deepening_A*
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<PuzzleState>
computePath(PuzzleState root)
-
-
-
Constructor Detail
-
IDAStar
public IDAStar(Heuristic heuristic)
-
-
Method Detail
-
computePath
public List<PuzzleState> computePath(PuzzleState root)
- Specified by:
computePath
in classPathfinder
-
-