Struct vrp_core::models::problem::Multi[][src]

pub struct Multi {
    pub jobs: Vec<Arc<Single>>,
    pub dimens: Dimensions,
    // some fields omitted
}
Expand description

Represents a job which consists of multiple sub jobs. All of these jobs must be performed or none of them. Order can be controlled via specific dimension value.

Fields

jobs: Vec<Arc<Single>>

A list of jobs which must be performed.

dimens: Dimensions

Dimensions which contains extra work requirements.

Implementations

Creates a new multi job from given ‘dimens’ and jobs assuming that jobs has to be inserted in order they specified.

Creates a new multi job from given ‘dimens’ and jobs using permutator to control insertion order.

Returns all sub-jobs permutations.

Validates given set of permutations.

Wraps given multi job into Arc adding reference to it from all sub-jobs.

Returns parent multi job for given sub-job.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.