17 #include <core/darwin.h> 18 #include <core/utils.h> 19 #include <core/universe.h> 20 #include <core/ann_utils.h> 21 #include <core/evolution.h> 23 #include <third_party/pybind11/pybind11.h> 28 #include <unordered_map> 52 string name()
const {
return property_->name(); }
54 string description()
const {
return property_->description(); }
56 string defaultValue()
const {
return property_->defaultValue(); }
58 vector<string> knownValues()
const {
return property_->knownValues(); }
63 py::object autoCast()
const;
66 double asFloat()
const;
90 string toJson()
const;
93 void fromJson(
const string& json_str);
96 Property getAttr(
const string& name)
const;
99 void setAttrStr(
const string& name,
const string& value);
102 void setAttrProperty(
const string& name,
const Property* property);
105 void setAttrCast(
const string& name, py::object value);
108 void setAttrBool(
const string& name, py::bool_ value);
111 vector<string> dir()
const;
121 unordered_map<string, core::Property*> index_;
127 explicit Domain(
const string& name);
129 const string& name()
const {
return name_; }
136 void seal(
bool sealed =
true);
144 bool isUsed()
const {
return used_; }
146 void setUsed(
bool used) { used_ = used; }
151 unique_ptr<core::PropertySet> config_;
152 unique_ptr<darwin::Domain> domain_;
153 bool sealed_ =
false;
159 public std::enable_shared_from_this<Population> {
163 const string& name()
const {
return name_; }
167 int size()
const {
return size_; }
169 void setSize(
int size);
175 unique_ptr<darwin::Genotype> getItem(
int index)
const;
177 void seal(
bool sealed =
true);
179 void materialize(
const Domain& domain);
185 bool isUsed()
const {
return used_; }
187 void setUsed(
bool used) { used_ = used; }
194 unique_ptr<core::PropertySet> config_;
195 unique_ptr<darwin::Population> population_;
196 vector<size_t> ranking_index_;
198 bool sealed_ =
false;
206 : summary_(summary) {}
208 int generation()
const {
return summary_.generation; }
209 float bestFitness()
const {
return summary_.best_fitness; }
210 float medianFitness()
const {
return summary_.median_fitness; }
211 float worstFitness()
const {
return summary_.worst_fitness; }
213 optional<PropertySet> calibrationFitness()
const;
215 unique_ptr<darwin::Genotype> champion()
const {
return summary_.champion->clone(); }
225 public std::enable_shared_from_this<Experiment> {
228 shared_ptr<Population> population,
229 shared_ptr<Universe> universe,
230 optional<string> name);
237 shared_ptr<Domain> domain()
const {
return domain_; }
238 shared_ptr<Population> population()
const {
return population_; }
239 shared_ptr<Universe> universe()
const {
return universe_; }
240 shared_ptr<darwin::EvolutionTrace> trace()
const {
return trace_; }
242 optional<string> name()
const {
return name_; }
244 void setName(
const optional<string>& name);
250 void initializePopulation();
259 void createNextGeneration();
268 void throwIfDuplicateName(
const optional<string>& name)
const;
274 shared_ptr<Domain> domain_;
275 shared_ptr<Population> population_;
276 shared_ptr<Universe> universe_;
278 optional<string> name_;
280 shared_ptr<darwin::Experiment> experiment_;
281 shared_ptr<darwin::EvolutionTrace> trace_;
287 explicit Universe(unique_ptr<darwin::Universe> universe)
288 : universe_(std::move(universe)) {}
293 shared_ptr<Experiment> newExperiment(shared_ptr<Domain> domain,
294 shared_ptr<Population> population,
295 optional<string> name);
306 return universe_->path();
315 return shared_from_this();
328 void throwIfClosed()
const;
331 unique_ptr<darwin::Universe> universe_;
335 vector<string> availableDomains();
338 vector<string> availablePopulations();
341 shared_ptr<Universe> createUniverse(
const string& path);
344 shared_ptr<Universe> openUniverse(
const string& path);
347 void addLogger(
const function<
void(
const string&)>& logger);
bool isClosed() const
Returns true if the universe object is closed.
Definition: python_bindings.h:301
A population implementation encapsulates the fixed-size set of genotypes, together with the rules for...
Definition: darwin.h:161
Summary of a generation (fitness samples, best genotype, ...)
Definition: evolution.h:37
The persistent storage for all the experiments and variations.
Definition: universe.h:111
void close()
Closes the Universe object.
Definition: python_bindings.h:298
string path() const
Returns the universe path name.
Definition: python_bindings.h:304
void ctxManagerExit(py::object, py::object, py::object)
Python context manager support.
Definition: python_bindings.h:319
shared_ptr< Universe > ctxManagerEnter()
Python context manager support.
Definition: python_bindings.h:313
Interface to the domain factory.
Definition: darwin.h:263
Wraps a core::Property pointer (non-onwning)
Definition: python_bindings.h:48
Reflection interface to a property in a PropertySet.
Definition: properties.h:41
Wrapper for darwin::Universe.
Definition: python_bindings.h:285
Wrapper for darwin::GenerationSummary.
Definition: python_bindings.h:203
Python bindings.
Definition: python_bindings.cpp:32
The foundation for data structures supporting runtime reflection.
Definition: properties.h:388
Wrapper for darwin::Domain.
Definition: python_bindings.h:125
Wrapper for darwin::Experiment plus evolution driving APIs.
Definition: python_bindings.h:224
Classes derived from this are not copyable or movable.
Definition: utils.h:69
Wraps a top-level core::PropertySet pointer (non-owning)
Definition: python_bindings.h:85
Interface to a domain implementation.
Definition: darwin.h:229
The ANN library configuration.
Definition: ann_utils.h:33
Settings for an evolution experiment run.
Definition: evolution.h:104
Wrapper for darwin::Population.
Definition: python_bindings.h:158
Interface to a population factory.
Definition: darwin.h:206