1
2
3
4
5
6
7
use crate::core::Distribution;
use spaces::{Space, Vector};


pub trait MLE: Distribution {
    fn fit_mle(samples: Vector<<Self::Support as Space>::Value>) -> Self;
}