I have a KdTree<FixedI32<U0>, usize, 2, 32, u32>. When I want to use squared_euclidean as distance_fn, I get an overflow. Would it be possible to support FixedI64 as distance_fn return type?
Currently, I work around it by using KdTree<FixedI64<U0>,...>, which seems wasteful.
I have a
KdTree<FixedI32<U0>, usize, 2, 32, u32>. When I want to usesquared_euclideanasdistance_fn, I get an overflow. Would it be possible to supportFixedI64asdistance_fnreturn type?Currently, I work around it by using
KdTree<FixedI64<U0>,...>, which seems wasteful.