Darwin Neuroevolution Framework
Public Attributes | List of all members
darwin::Evolution::Snapshot Struct Reference

State snapshot of an evolution run. More...

#include <evolution.h>

Public Attributes

State state = State::Invalid
 Evolution state.
 
int generation = 0
 Generation nubmer.
 
EvolutionStage stage
 Currently running stage (most inner stage if there are nested stages)
 
shared_ptr< const Experimentexperiment
 The associated Experiment instance. More...
 
shared_ptr< const EvolutionTracetrace
 The associated EvolutionTrace instance. More...
 
const Populationpopulation = nullptr
 The associated darwin::Population instance. More...
 
const Domaindomain = nullptr
 The associated darwin::Domain instance. More...
 

Detailed Description

State snapshot of an evolution run.

See also
snapshot()

Member Data Documentation

◆ domain

const Domain* darwin::Evolution::Snapshot::domain = nullptr

The associated darwin::Domain instance.

Warning
This is a non-owning pointer and will be invalidated if the Snapshot instance outlives the Domain instance
This points to the "live" Domain instance (not a copy) so accessing it without external syncronization will likely introduce a data race

◆ experiment

shared_ptr<const Experiment> darwin::Evolution::Snapshot::experiment

The associated Experiment instance.

Warning
This is a shallow copy

◆ population

const Population* darwin::Evolution::Snapshot::population = nullptr

The associated darwin::Population instance.

Warning
This is a non-owning pointer and will be invalidated if the Snapshot instance outlives the Population instance
This points to the "live" Population instance (not a copy) so accessing it without external syncronization will likely introduce a data race

◆ trace

shared_ptr<const EvolutionTrace> darwin::Evolution::Snapshot::trace

The associated EvolutionTrace instance.

Warning
This is a shallow copy

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