[][src]Struct vrp_core::solver::Builder

pub struct Builder {
    pub max_generations: Option<usize>,
    pub max_time: Option<usize>,
    pub cost_variation: Option<(usize, f64)>,
    pub config: EvolutionConfig,
}

Provides configurable way to build Vehile Routing Problem Solver instance using fluent interface style.

A newly created builder instance is pre-configured with some reasonable defaults for mid-size problems (~200), so there is no need to call any of its methods.

Examples

This example shows how to override some of default metaheuristic parameters using fluent interface methods:

use vrp_core::solver::Builder;
use vrp_core::models::Problem;
use vrp_core::utils::Environment;

// create your VRP problem
let problem: Arc<Problem> = create_example_problem();
let environment = Arc::new(Environment::default());
// build solver using builder with overridden parameters
let solver = Builder::new(problem, environment)
    .with_max_time(Some(60))
    .with_max_generations(Some(100))
    .build()?;
// run solver and get the best known solution within its cost.
let (solution, cost, _) = solver.solve()?;

assert_eq!(cost, 42.);
assert_eq!(solution.routes.len(), 1);
assert_eq!(solution.unassigned.len(), 0);

Fields

max_generations: Option<usize>

A max amount generations in evolution.

max_time: Option<usize>

A max seconds to run evolution.

cost_variation: Option<(usize, f64)>

A cost variation parameters for termination criteria.

config: EvolutionConfig

An evolution configuration..

Implementations

impl Builder[src]

pub fn new(problem: Arc<Problem>, environment: Arc<Environment>) -> Self[src]

Creates a new instance of Builder.

impl Builder[src]

pub fn with_telemetry(mut self: Self, telemetry: Telemetry) -> Self[src]

Sets telemetry. Default telemetry is set to do nothing.

pub fn with_max_generations(mut self: Self, limit: Option<usize>) -> Self[src]

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

pub fn with_cost_variation(
    mut self: Self,
    variation: Option<(usize, f64)>
) -> Self
[src]

Sets cost variation termination criteria. Default is None.

pub fn with_max_time(mut self: Self, limit: Option<usize>) -> Self[src]

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

pub fn with_init_params(
    mut self: Self,
    size: Option<usize>,
    initial_methods: Option<Vec<(Box<dyn Recreate + Send + Sync>, usize)>>
) -> Self
[src]

Sets initial parameters used to construct initial population.

pub fn with_init_solutions(mut self: Self, solutions: Vec<Solution>) -> Self[src]

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

pub fn with_population(
    mut self: Self,
    population: Box<dyn Population + Send + Sync>
) -> Self
[src]

Sets population algorithm. Default is rosomaxa.

pub fn with_mutation(
    mut self: Self,
    mutation: Arc<dyn Mutation + Send + Sync>
) -> Self
[src]

Sets mutation algorithm. Default is ruin and recreate.

pub fn with_termination(
    mut self: Self,
    termination: Arc<dyn Termination + Send + Sync>
) -> Self
[src]

Sets termination algorithm. Default is max time and max generations.

pub fn build(self) -> Result<Solver, String>[src]

Builds Solver instance.

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