Enum vrp_core::models::LockOrder [−][src]
pub enum LockOrder {
Any,
Sequence,
Strict,
}Expand description
An enumeration which specifies how jobs should be ordered in tour.
Variants
Any
Jobs can be reshuffled in any order.
Sequence
Jobs cannot be reshuffled, but new job can be inserted in between.
Strict
Jobs cannot be reshuffled and no jobs can be inserted in between.