fetish_lib/
params.rs

1///Maximum-singular-value-relative truncation threshold for all pseudoinverses
2pub const PINV_TRUNCATION_THRESH : f32 = 0.0001f32;
3
4///Truncation threshold for squared norms of data-point inputs to a regression,
5///below which we assume that no regression information is actually being given.
6pub const UPDATE_SQ_NORM_TRUNCATION_THRESH : f32 = 0.0000001f32;
7
8///Default threshold for floating-point-equality checks in [`crate::test_utils`].
9pub const DEFAULT_TEST_THRESH : f32 = 0.001f32;