Interface Heuristic

All Known Implementing Classes:
Dijkstra, Euclidean

public interface Heuristic
Interface for heuristic estimates to the goal used by classes implementing SearchInterface. This is useful for heuristic-informed searches like A*.
Author:
Cameron Arshadi
  • Method Summary

    Modifier and Type
    Method
    Description
    double
    estimateCostToGoal(int current_x, int current_y, int current_z, int goal_x, int goal_y, int goal_z)
     
  • Method Details

    • estimateCostToGoal

      double estimateCostToGoal(int current_x, int current_y, int current_z, int goal_x, int goal_y, int goal_z)