[][src]Struct vrp_core::solver::mutation::RecreateWithBlinks

pub struct RecreateWithBlinks<Capacity: Add + Sub + Ord + Copy + Default + Send + Sync + 'static> { /* fields omitted */ }

A recreate method as described in "Slack Induction by String Removals for Vehicle Routing Problems" (aka SISR) paper by Jan Christiaens, Greet Vanden Berghe.

Implementations

impl<Capacity: Add<Output = Capacity> + Sub<Output = Capacity> + Ord + Copy + Default + Send + Sync + 'static> RecreateWithBlinks<Capacity>[src]

pub fn new(selectors: Vec<(Box<dyn JobSelector + Send + Sync>, usize)>) -> Self[src]

Trait Implementations

impl<Capacity: Add<Output = Capacity> + Sub<Output = Capacity> + Ord + Copy + Default + Send + Sync + 'static> Default for RecreateWithBlinks<Capacity>[src]

impl<Capacity: Add<Output = Capacity> + Sub<Output = Capacity> + Ord + Copy + Default + Send + Sync + 'static> Recreate for RecreateWithBlinks<Capacity>[src]

Auto Trait Implementations

impl<Capacity> !RefUnwindSafe for RecreateWithBlinks<Capacity>

impl<Capacity> Send for RecreateWithBlinks<Capacity>

impl<Capacity> Sync for RecreateWithBlinks<Capacity>

impl<Capacity> Unpin for RecreateWithBlinks<Capacity> where
    Capacity: Unpin

impl<Capacity> !UnwindSafe for RecreateWithBlinks<Capacity>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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