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