AI 24/25 Project Software
Documentation for the AI 24/25 course programming project software
Loading...
Searching...
No Matches
saturation.h
1#ifndef PROBFD_PDBS_SATURATION_H
2#define PROBFD_PDBS_SATURATION_H
3
4#include "probfd/value_type.h"
5
6#include <span>
7
8// Forward Declarations
9namespace probfd::pdbs {
10class ProjectionStateSpace;
11}
12
13namespace probfd::pdbs {
14
15void compute_saturated_costs(
16 ProjectionStateSpace& state_space,
17 std::span<const value_t> value_table,
18 std::span<value_t> saturated_costs);
19
20} // namespace probfd::pdbs
21
22#endif // PROBFD_PDBS_SATURATION_H
Namespace dedicated to probabilistic pattern databases.
Definition gzocp_heuristic.h:16