Skip to main content

EvolutionContext

Struct EvolutionContext 

Source
pub struct EvolutionContext<C: Chromosome, T> { /* private fields */ }

Implementations§

Source§

impl<C: Chromosome, T> EvolutionContext<C, T>

Source

pub fn index(&self) -> usize

Source

pub fn metrics(&self) -> &MetricSet

Source

pub fn score(&self) -> Option<&Score>

Source

pub fn ecosystem(&self) -> &Ecosystem<C>

Source

pub fn front(&self) -> Arc<RwLock<Front<Phenotype<C>>>>

Source

pub fn event_stream(&self) -> &EventStream

Source

pub fn wait(&self)

Source

pub fn get_or_create_sync(&mut self) -> ThreadSync

Source

pub fn request_stop(&self)

Source

pub fn stop_requested(&self) -> bool

Source

pub fn pause_requested(&self) -> bool

Source

pub fn state(&self) -> EngineState

Trait Implementations§

Source§

impl<'a, C, T> From<&'a EvolutionContext<C, T>> for GenerationView<'a, C, T>
where C: Chromosome,

Source§

fn from(ctx: &'a EvolutionContext<C, T>) -> Self

Converts to this type from the input type.
Source§

impl<C, T> From<&EvolutionContext<C, T>> for EpochStart
where C: Chromosome, T: Clone,

Source§

fn from(ctx: &EvolutionContext<C, T>) -> Self

Converts to this type from the input type.
Source§

impl<C, T> From<&EvolutionContext<C, T>> for Improvement<T>
where C: Chromosome, T: Clone,

Source§

fn from(ctx: &EvolutionContext<C, T>) -> Self

Converts to this type from the input type.
Source§

impl<C, T> From<&EvolutionContext<C, T>> for EpochComplete<T>
where C: Chromosome, T: Clone,

Source§

fn from(ctx: &EvolutionContext<C, T>) -> Self

Converts to this type from the input type.
Source§

impl<C, T> From<&EvolutionContext<C, T>> for EngineStop<T>
where C: Chromosome, T: Clone,

Source§

fn from(ctx: &EvolutionContext<C, T>) -> Self

Converts to this type from the input type.
Source§

impl<C, T> From<&EvolutionContext<C, T>> for GenerationSnapshot<C, T>
where C: Chromosome + 'static, T: Clone + Send + Sync + 'static, Generation<C, T>: for<'a> From<&'a EvolutionContext<C, T>>,

Source§

fn from(ctx: &EvolutionContext<C, T>) -> Self

Converts to this type from the input type.
Source§

impl<C, T> From<&EvolutionContext<C, T>> for Generation<C, T>
where C: Chromosome + Clone, T: Clone,

Source§

fn from(context: &EvolutionContext<C, T>) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<C, T> !RefUnwindSafe for EvolutionContext<C, T>

§

impl<C, T> !UnwindSafe for EvolutionContext<C, T>

§

impl<C, T> Freeze for EvolutionContext<C, T>
where Ecosystem<C>: Freeze, T: Freeze, Arc<RwLock<Front<Phenotype<C>>>>: Freeze, Arc<dyn Problem<C, T>>: Freeze,

§

impl<C, T> Send for EvolutionContext<C, T>
where Ecosystem<C>: Send, T: Send, Arc<RwLock<Front<Phenotype<C>>>>: Send, Arc<dyn Problem<C, T>>: Send,

§

impl<C, T> Sync for EvolutionContext<C, T>
where Ecosystem<C>: Sync, T: Sync, Arc<RwLock<Front<Phenotype<C>>>>: Sync, Arc<dyn Problem<C, T>>: Sync,

§

impl<C, T> Unpin for EvolutionContext<C, T>
where Ecosystem<C>: Unpin, T: Unpin, Arc<RwLock<Front<Phenotype<C>>>>: Unpin, Arc<dyn Problem<C, T>>: Unpin,

§

impl<C, T> UnsafeUnpin for EvolutionContext<C, T>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> Event for T
where T: Send + Sync + 'static,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more