1#ifndef HEURISTICS_BLIND_SEARCH_HEURISTIC_H
2#define HEURISTICS_BLIND_SEARCH_HEURISTIC_H
4#include "downward/heuristic.h"
6namespace blind_search_heuristic {
7class BlindSearchHeuristic :
public Heuristic {
11 virtual int compute_heuristic(
const State& ancestor_state)
override;
15 const std::shared_ptr<AbstractTask>& transform,
17 const std::string& description,
18 utils::Verbosity verbosity);