Darwin Neuroevolution Framework
Public Attributes | List of all members
ann::Config Struct Reference

The ANN library configuration. More...

#include <ann_utils.h>

Inheritance diagram for ann::Config:
core::PropertySet core::NonCopyable

Public Attributes

bool mutation_normal_distribution = true
 "Use normal (instead of uniform) distribution for mutations"
 
float mutation_std_dev = 1.0f
 "Mutation standard deviation. Used if mutation_normal_distribution is true."
 
float connection_range = 64
 "Initial connection values range"
 
float connection_resolution = 0.01f
 "Connection values resolution"
 
bool sparse_weights = false
 "Generate sparse weights for the initial (random) population"
 
float weights_density = 0.2f
 "Probability of non-zero weights (if sparse_weights is true)"
 

Additional Inherited Members

- Public Member Functions inherited from core::PropertySet
vector< Property * > properties ()
 Accessor to the list of properties.
 
vector< const Property * > properties () const
 Accessor to the list of properties.
 
void resetToDefaultValues ()
 Resets all the properties to the default values.
 
void copyFrom (const PropertySet &src)
 Transfer values between two property sets.
 
void seal (bool sealed=true)
 After sealing a PropertySet, all attempts to modify it through the Property interface will throw an exception (even if setting to the same value)
 
bool sealed () const
 Returns true if the property set is sealed.
 
void onPropertyChange (const Property *property)
 Called before updating a property value.
 
json toJson () const
 Serialize all the properties to a json object. More...
 
void fromJson (const json &json_obj)
 Deserialize a set of properties from a json object. More...
 

Detailed Description

The ANN library configuration.


The documentation for this struct was generated from the following file: