pub struct EvolutionConfigBuilder<C, O, S, K>
where C: HeuristicContext<Objective = O, Solution = S> + Stateful<Key = K> + 'static, O: HeuristicObjective<Solution = S> + 'static, S: HeuristicSolution + 'static, K: Hash + Eq + Clone + Send + Sync + 'static,
{ /* private fields */ }
Expand description

Provides configurable way to build evolution configuration using fluent interface style.

Implementations§

source§

impl<C, O, S, K> EvolutionConfigBuilder<C, O, S, K>
where C: HeuristicContext<Objective = O, Solution = S> + Stateful<Key = K> + 'static, O: HeuristicObjective<Solution = S> + 'static, S: HeuristicSolution + 'static, K: Hash + Eq + Clone + Send + Sync + 'static,

source

pub fn with_max_generations( self, limit: Option<usize> ) -> EvolutionConfigBuilder<C, O, S, K>

Sets max generations to be run by evolution. Default is 3000.

source

pub fn with_max_time( self, limit: Option<usize> ) -> EvolutionConfigBuilder<C, O, S, K>

Sets max running time limit for evolution. Default is 300 seconds.

source

pub fn with_min_cv( self, min_cv: Option<(String, usize, f64, bool)>, key: K ) -> EvolutionConfigBuilder<C, O, S, K>

Sets variation coefficient termination criteria. Default is None.

source

pub fn with_target_proximity( self, target_proximity: Option<(Vec<f64>, f64)> ) -> EvolutionConfigBuilder<C, O, S, K>

Sets target fitness and distance threshold as termination criteria.

source

pub fn with_initial( self, max_size: usize, quota: f64, operators: Vec<(Box<dyn InitialOperator<Objective = O, Context = C, Solution = S> + Sync + Send>, usize)> ) -> EvolutionConfigBuilder<C, O, S, K>

Sets initial parameters used to construct initial population.

source

pub fn with_processing( self, processing: ProcessingConfig<C, O, S> ) -> EvolutionConfigBuilder<C, O, S, K>

Specifies processing configuration.

source

pub fn with_init_solutions( self, solutions: Vec<S>, max_init_size: Option<usize> ) -> EvolutionConfigBuilder<C, O, S, K>

Sets initial solutions in population. Default is no solutions in population.

source

pub fn with_objective( self, objective: Arc<dyn HeuristicObjective<Solution = S>> ) -> EvolutionConfigBuilder<C, O, S, K>

Sets objective.

source

pub fn with_context(self, context: C) -> EvolutionConfigBuilder<C, O, S, K>

Sets heuristic context.

source

pub fn with_termination( self, termination: Box<dyn Termination<Context = C, Objective = O>> ) -> EvolutionConfigBuilder<C, O, S, K>

Sets termination.

source

pub fn with_heuristic( self, heuristic: Box<dyn HyperHeuristic<Context = C, Objective = O, Solution = S>> ) -> EvolutionConfigBuilder<C, O, S, K>

Sets a different heuristic replacing initial.

source

pub fn with_strategy( self, strategy: Box<dyn EvolutionStrategy<Objective = O, Context = C, Solution = S>> ) -> EvolutionConfigBuilder<C, O, S, K>

Sets a different heuristic replacing initial.

source

pub fn with_search_operators( self, search_operators: Vec<(Arc<dyn HeuristicSearchOperator<Context = C, Solution = S, Objective = O> + Sync + Send>, String, f64)> ) -> EvolutionConfigBuilder<C, O, S, K>

Sets search operators for dynamic heuristic.

source

pub fn with_diversify_operators( self, diversify_operators: Vec<Arc<dyn HeuristicDiversifyOperator<Objective = O, Solution = S, Context = C> + Sync + Send>> ) -> EvolutionConfigBuilder<C, O, S, K>

Sets diversify operators for dynamic heuristic.

source

pub fn build(self) -> Result<EvolutionConfig<C, O, S>, GenericError>

Builds the evolution config.

Trait Implementations§

source§

impl<C, O, S, K> Default for EvolutionConfigBuilder<C, O, S, K>
where C: HeuristicContext<Objective = O, Solution = S> + Stateful<Key = K> + 'static, O: HeuristicObjective<Solution = S> + 'static, S: HeuristicSolution + 'static, K: Hash + Eq + Clone + Send + Sync + 'static,

source§

fn default() -> EvolutionConfigBuilder<C, O, S, K>

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<C, O, S, K> !RefUnwindSafe for EvolutionConfigBuilder<C, O, S, K>

§

impl<C, O, S, K> !Send for EvolutionConfigBuilder<C, O, S, K>

§

impl<C, O, S, K> !Sync for EvolutionConfigBuilder<C, O, S, K>

§

impl<C, O, S, K> Unpin for EvolutionConfigBuilder<C, O, S, K>
where C: Unpin, K: Unpin, S: Unpin,

§

impl<C, O, S, K> !UnwindSafe for EvolutionConfigBuilder<C, O, S, K>

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> 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.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

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

Initializes a with the given initializer. Read more
§

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

Dereferences the given pointer. Read more
§

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

Mutably dereferences the given pointer. Read more
§

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>,

§

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>,

§

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.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V