pub type ValueType = f64;Expand description
Main value type for calculations
Default is f64
If you want use f32 which is (may be) faster, you can use cargo build --features value_type_f32
Or in your cargo.toml:
[dependencies]
yata = { features = [ "value_type_f32" ] }Read more at Features section