[][src]Struct kurobako::runner::StudyRunner

pub struct StudyRunner<S, P> where
    P: Problem
{ pub study_budget: Budget, // some fields omitted }

Fields

study_budget: Budget

Methods

impl<S, P> StudyRunner<S, P> where
    S: Solver,
    P: Problem
[src]

pub fn new<SR, PR>(
    solver_recipe: &SR,
    problem_recipe: &PR,
    options: &StudyRunnerOptions
) -> Result<Self> where
    SR: SolverRecipe<Solver = S>,
    PR: ProblemRecipe<Problem = P>, 
[src]

pub fn run(self) -> Result<StudyRecord>[src]

pub fn run_once(&mut self, budget: &mut Budget) -> Result<()>[src]

pub fn study(&self) -> &StudyRecord[src]

Trait Implementations

impl<S: Debug, P: Debug> Debug for StudyRunner<S, P> where
    P: Problem,
    P::Evaluator: Debug
[src]

Auto Trait Implementations

impl<S, P> !Send for StudyRunner<S, P>

impl<S, P> Unpin for StudyRunner<S, P> where
    P: Unpin,
    S: Unpin,
    <P as Problem>::Evaluator: Unpin

impl<S, P> !Sync for StudyRunner<S, P>

impl<S, P> RefUnwindSafe for StudyRunner<S, P> where
    P: RefUnwindSafe,
    S: RefUnwindSafe,
    <P as Problem>::Evaluator: RefUnwindSafe

impl<S, P> UnwindSafe for StudyRunner<S, P> where
    P: UnwindSafe,
    S: UnwindSafe,
    <P as Problem>::Evaluator: UnwindSafe

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,