AI 24/25 Project Software
Documentation for the AI 24/25 course programming project software
Loading...
Searching...
No Matches
null_pruning_method.h
1#ifndef PRUNING_NULL_PRUNING_METHOD_H
2#define PRUNING_NULL_PRUNING_METHOD_H
3
4#include "downward/pruning_method.h"
5
6namespace null_pruning_method {
7class NullPruningMethod : public PruningMethod {
8 virtual void prune(const State&, std::vector<OperatorID>&) override {}
9
10public:
11 explicit NullPruningMethod(utils::Verbosity verbosity);
12 virtual void initialize(const std::shared_ptr<AbstractTask>&) override;
13 virtual void print_statistics() const override {}
14};
15} // namespace null_pruning_method
16
17#endif