nabo_pbc/
internal_parameters.rs

1use num_traits::Float;
2use ordered_float::NotNan;
3
4/// Parameters to be passed unchanged to internal recursive function
5pub(crate) struct InternalParameters<T: Float> {
6    pub(crate) max_error2: NotNan<T>,
7    pub(crate) max_radius2: NotNan<T>,
8    pub(crate) allow_self_match: bool,
9}