Darwin Neuroevolution Framework
world.h
1 // Copyright 2018 The Darwin Neuroevolution Framework Authors.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 
17 #include "robot.h"
18 
19 #include <core/properties.h>
20 
21 #include <memory>
22 using namespace std;
23 
24 namespace find_max_value {
25 
26 constexpr int kMinSize = 5;
27 
29 struct Config : public core::PropertySet {
30  PROPERTY(min_size, int, 5, "Smallest array size");
31  PROPERTY(max_size, int, 50, "Largest array size");
32 
33  PROPERTY(max_value, int, 100, "Range of values");
34 
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");
37 };
38 
39 extern Config g_config;
40 
41 struct World {
42  public:
43  int map(int index) const { return map_[index]; }
44 
45  int goal() const { return goal_; }
46  int size() const { return int(map_.size()); }
47 
48  void generate();
49  bool fullyExplored() const;
50  void simInit(const World& world, Robot* robot);
51  void simStep();
52 
53  private:
54  vector<int> map_;
55  vector<char> visited_;
56  int goal_ = 0;
57 
58  Robot* robot_;
59 };
60 
61 } // namespace find_max_value
STL namespace.
Find_Max_Value domain configuration.
Definition: world.h:29
Definition: max.h:27
The foundation for data structures supporting runtime reflection.
Definition: properties.h:388