use crateHValue;
use crateHeuristic;
use crate;
/// A blind heuristic that returns 0 at the goal and 1 otherwise.
///
/// This is the simplest admissible heuristic, equivalent to
/// treating the search as uniform-cost with goal checking.
///
/// # Examples
///
/// ```
/// use miniplan::heuristic::BlindHeuristic;
/// use miniplan::search::Heuristic;
///
/// assert_eq!(BlindHeuristic.name(), "blind");
/// ```
;