pub trait DefaultGivenOnlineProblem<T, P, C, D> where
    P: Problem<T, C, D>,
    C: ModelOutputSuccess,
    D: ModelOutputFailure
{ fn default(o: &Online<P>) -> Self; }
Expand description

Gives type a default value which may depend on an online problem instance.

Required methods

Implementors