SolverBuilder

Struct SolverBuilder 

Source
pub struct SolverBuilder<S: PlanningSolution> { /* private fields */ }
Expand description

Builder for creating solvers from PlanningSolution types.

This builder automatically extracts domain models and constraints from the solution type and generates the required WASM module.

§Type Parameters

  • S: The solution type that implements PlanningSolution

§Example

let solver = SolverBuilder::<Timetable>::new()
    .with_termination(TerminationConfig::new().with_spent_limit("PT5M"))
    .build()?;

Implementations§

Source§

impl<S: PlanningSolution> SolverBuilder<S>

Source

pub fn new() -> Self

Creates a new SolverBuilder with default settings.

The default service URL is http://localhost:8080.

Source

pub fn with_service_url(self, url: impl Into<String>) -> Self

Sets the URL of the solver service.

§Example
let builder = SolverBuilder::<Timetable>::new()
    .with_service_url("http://solver.example.com:8080");
Source

pub fn with_termination(self, termination: TerminationConfig) -> Self

Sets the termination configuration.

§Example
let builder = SolverBuilder::<Timetable>::new()
    .with_termination(
        TerminationConfig::new()
            .with_spent_limit("PT5M")
            .with_best_score_feasible(true)
    );
Source

pub fn with_environment_mode(self, mode: EnvironmentMode) -> Self

Sets the environment mode for the solver.

§Example
let builder = SolverBuilder::<Timetable>::new()
    .with_environment_mode(EnvironmentMode::Reproducible);
Source

pub fn with_random_seed(self, seed: u64) -> Self

Sets the random seed for reproducible solving.

§Example
let builder = SolverBuilder::<Timetable>::new()
    .with_random_seed(42);
Source

pub fn with_move_thread_count(self, count: MoveThreadCount) -> Self

Sets the move thread count for parallel solving.

§Example
let builder = SolverBuilder::<Timetable>::new()
    .with_move_thread_count(MoveThreadCount::Auto);
Source

pub fn with_service(self, service: Arc<dyn SolverService>) -> Self

Uses a custom solver service instead of the default HTTP service.

This is useful for testing or when using a different transport.

Source

pub fn domain_model() -> DomainModel

Returns the domain model for the solution type.

This is extracted from the PlanningSolution::domain_model() method.

Source

pub fn constraints() -> ConstraintSet

Returns the constraint set for the solution type.

This is extracted from the PlanningSolution::constraints() method.

Source

pub fn build<B: LanguageBridge>(self) -> SolverForgeResult<TypedSolver<S, B>>

Builds a TypedSolver that can solve instances of the solution type.

§Errors

Returns an error if WASM module generation fails.

§Example
let solver = SolverBuilder::<Timetable>::new()
    .with_termination(TerminationConfig::new().with_spent_limit("PT5M"))
    .build()?;
Source

pub fn build_with_bridge<B: LanguageBridge>( self, _bridge: Arc<B>, ) -> SolverForgeResult<TypedSolver<S, B>>

Builds a TypedSolver with a specific bridge instance.

This is a convenience method that creates a solver ready to use with the provided bridge.

Trait Implementations§

Source§

impl<S: PlanningSolution> Default for SolverBuilder<S>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<S> Freeze for SolverBuilder<S>

§

impl<S> !RefUnwindSafe for SolverBuilder<S>

§

impl<S> Send for SolverBuilder<S>

§

impl<S> Sync for SolverBuilder<S>

§

impl<S> Unpin for SolverBuilder<S>
where S: Unpin,

§

impl<S> !UnwindSafe for SolverBuilder<S>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more