pub trait FitFeatureEvaluatorGettersTrait<const NPARAMS: usize> {
    // Required methods
    fn get_algorithm(&self) -> &CurveFitAlgorithm;
    fn ln_prior_from_ts<T: Float>(
        &self,
        ts: &mut TimeSeries<'_, T>
    ) -> LnPrior<NPARAMS>;
}

Required Methods§

source

fn get_algorithm(&self) -> &CurveFitAlgorithm

source

fn ln_prior_from_ts<T: Float>( &self, ts: &mut TimeSeries<'_, T> ) -> LnPrior<NPARAMS>

Object Safety§

This trait is not object safe.

Implementors§