AI 24/25 Project Software
Documentation for the AI 24/25 course programming project software
Loading...
Searching...
No Matches
blind_search_heuristic.h
1#ifndef HEURISTICS_BLIND_SEARCH_HEURISTIC_H
2#define HEURISTICS_BLIND_SEARCH_HEURISTIC_H
3
4#include "downward/heuristic.h"
5
6namespace blind_search_heuristic {
7class BlindSearchHeuristic : public Heuristic {
8 int min_operator_cost;
9
10protected:
11 virtual int compute_heuristic(const State& ancestor_state) override;
12
13public:
14 BlindSearchHeuristic(
15 const std::shared_ptr<AbstractTask>& transform,
16 bool cache_estimates,
17 const std::string& description,
18 utils::Verbosity verbosity);
19};
20} // namespace blind_search_heuristic
21
22#endif