pub trait GetLengthRatio<T> {
    // Required method
    fn get_length_ratio(
        &self,
        normal_form: &NormalForm,
        defs: &mut Defs<T>
    ) -> Result<Rational64, Error>;
}

Required Methods§

source

fn get_length_ratio( &self, normal_form: &NormalForm, defs: &mut Defs<T> ) -> Result<Rational64, Error>

Implementors§