Cached

Struct Cached 

Source
pub struct Cached<T: Solution> { /* private fields */ }
Expand description

A wrapper around a solution that automatically caches the fitness value

Evaluating the fitness of solutions is nearly always the most computationally intensive part of an evolutionary algorithm. This wrapper type makes it so that that computation will only ever happen once for every distinct individual. It implements Solution itself, so you can use the exact same interface you would if it weren’t there.

Implementations§

Source§

impl<T> Cached<T>
where T: Solution,

Source

pub fn new(individual: T) -> Self

Create a new wrapper around an existing solution.

Source

pub fn into_inner(self) -> (T, Option<T::Fitness>)

Consumes the Cached, returning a tuple of the solution it contained and an Option of the fitness value that could have been cached.

Source

pub fn clear_cache(&mut self) -> Option<T::Fitness>

Delete any cached fitness value. Returns the fitness value that was cached, if it existed.

Be careful with this method; you should not generally need to use it. Using it incorrectly can cause evaluations to be repeated unnecessarily, leading to heavy slowdowns.

Trait Implementations§

Source§

impl<T> AsRef<T> for Cached<T>
where T: Solution,

Source§

fn as_ref(&self) -> &T

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl<T> Clone for Cached<T>
where T: Solution,

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T> Debug for Cached<T>
where T: Solution + Debug, T::Fitness: Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T> PartialEq<T> for Cached<T>
where T: Solution + PartialEq,

Source§

fn eq(&self, other: &T) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T> PartialEq for Cached<T>
where T: Solution + PartialEq,

Source§

fn eq(&self, other: &Cached<T>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T> PartialOrd<T> for Cached<T>
where T: Solution + PartialOrd,

Source§

fn partial_cmp(&self, other: &T) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<T> PartialOrd for Cached<T>
where T: Solution + PartialOrd,

Source§

fn partial_cmp(&self, other: &Self) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<T> Solution for Cached<T>
where T: Solution,

Source§

type Fitness = <T as Solution>::Fitness

The type that represents this solution’s fitness. For most applications, you’ll want to use f64 or MultiObjective for this, but you can use any type you want.
Source§

fn generate() -> Self

Randomly generate a new solution.
Source§

fn evaluate(&self) -> Self::Fitness

Evaluate the fitness of the solution. Read more
Source§

fn crossover(a: &mut Self, b: &mut Self)

Crossover operator. Read more
Source§

fn mutate(&mut self)

Mutation operator. Read more
Source§

impl<T: Solution> Sync for Cached<T>

Auto Trait Implementations§

§

impl<T> !Freeze for Cached<T>

§

impl<T> !RefUnwindSafe for Cached<T>

§

impl<T> Send for Cached<T>
where T: Send, <T as Solution>::Fitness: Send,

§

impl<T> Unpin for Cached<T>
where T: Unpin, <T as Solution>::Fitness: Unpin,

§

impl<T> UnwindSafe for Cached<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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

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

Source§

type Error = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

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<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V