1#ifndef HEURISTICS_GOAL_COUNT_HEURISTIC_H
2#define HEURISTICS_GOAL_COUNT_HEURISTIC_H
4#include "downward/heuristic.h"
6namespace goal_count_heuristic {
7class GoalCountHeuristic :
public Heuristic {
9 virtual int compute_heuristic(
const State& ancestor_state)
override;
13 const std::shared_ptr<AbstractTask>& transform,
15 const std::string& description,
16 utils::Verbosity verbosity);