pub trait RelaxableCostFn<'a, C, D> where
    C: ModelOutputSuccess,
    D: ModelOutputFailure
{ fn into_f(self) -> CostFn<'a, FractionalConfig, C, D>; }

Required methods

Relax a certain integral cost function to the fractional setting.

Implementors