AI 24/25 Project Software
Documentation for the AI 24/25 course programming project software
Loading...
Searching...
No Matches
trivial_finder_factory.h
1#ifndef PROBFD_PDBS_TRIVIAL_FINDER_FACTORY_H
2#define PROBFD_PDBS_TRIVIAL_FINDER_FACTORY_H
3
4#include "probfd/pdbs/subcollection_finder_factory.h"
5
6#include <memory>
7
8namespace probfd::pdbs {
9
10class TrivialFinderFactory : public SubCollectionFinderFactory {
11public:
12 std::unique_ptr<SubCollectionFinder>
13 create_subcollection_finder(const ProbabilisticTaskProxy&) override;
14};
15
16} // namespace probfd::pdbs
17
18#endif // PROBFD_PDBS_TRIVIAL_FINDER_FACTORY_H
Namespace dedicated to probabilistic pattern databases.
Definition gzocp_heuristic.h:16