Struct vrp_core::construction::heuristics::RouteContext[][src]

pub struct RouteContext {
    pub route: Arc<Route>,
    pub state: Arc<RouteState>,
    // some fields omitted
}

Specifies insertion context for route.

Fields

route: Arc<Route>

Used route.

state: Arc<RouteState>

Insertion state.

Implementations

impl RouteContext[src]

pub fn new(actor: Arc<Actor>) -> Self[src]

Creates a new instance of RouteContext.

pub fn new_with_state(route: Arc<Route>, state: Arc<RouteState>) -> Self[src]

Creates a new instance of RouteContext with arguments provided.

pub fn deep_copy(&self) -> Self[src]

Creates a deep copy of RouteContext.

pub fn get_route_cost(&self) -> Cost[src]

Gets route cost.

pub fn as_mut(&mut self) -> (&mut Route, &mut RouteState)[src]

Unwraps given RouteContext as pair of mutable references. Marks context as stale.

pub fn route_mut(&mut self) -> &mut Route[src]

Returns mutable reference to used Route. Marks context as stale.

pub fn state_mut(&mut self) -> &mut RouteState[src]

Returns mutable reference to used RouteState. Marks context as stale.

pub fn is_stale(&self) -> bool[src]

Returns true if context is stale. Context is marked stale when it is accessed by mut methods. A general motivation of the flag is to avoid recalculating non-changed states.

Trait Implementations

impl Clone for RouteContext[src]

impl Eq for RouteContext[src]

impl PartialEq<RouteContext> for RouteContext[src]

Auto Trait Implementations

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> Pointable for T

type Init = T

The type for initializers.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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