19 #include <core/properties.h> 26 constexpr
int kMinSize = 5;
30 PROPERTY(min_size,
int, 5,
"Smallest array size");
31 PROPERTY(max_size,
int, 50,
"Largest array size");
33 PROPERTY(max_value,
int, 100,
"Range of values");
35 PROPERTY(easy_map,
bool,
true,
"Generate a sparse array (just a few non-zero values)");
36 PROPERTY(test_worlds,
int, 10,
"Number of test worlds per generation");
43 int map(
int index)
const {
return map_[index]; }
45 int goal()
const {
return goal_; }
46 int size()
const {
return int(map_.size()); }
49 bool fullyExplored()
const;
50 void simInit(
const World& world, Robot* robot);
55 vector<char> visited_;
Find_Max_Value domain configuration.
Definition: world.h:29
The foundation for data structures supporting runtime reflection.
Definition: properties.h:388