AI 24/25 Project Software
Documentation for the AI 24/25 course programming project software
Loading...
Searching...
No Matches
util.h
1#ifndef POTENTIALS_UTIL_H
2#define POTENTIALS_UTIL_H
3
4#include <vector>
5
6class State;
7
8namespace utils {
9class RandomNumberGenerator;
10}
11
12namespace potentials {
13class PotentialOptimizer;
14
15std::vector<State> sample_without_dead_end_detection(
16 PotentialOptimizer& optimizer,
17 int num_samples,
18 utils::RandomNumberGenerator& rng);
19
20} // namespace potentials
21
22#endif