Change the multiprec_ prefix to mp_

Currently there is a combination of names starting with
`multiprecision_`, `mp_` and `multiprec_`. Update so `multiprecision_`
is always used when a long form makes sense, `mp_` otherwise
(eliminating `multiprec_`).
This commit is contained in:
Trevor Gross
2024-11-03 20:24:26 -06:00
committed by Trevor Gross
parent 5032fcf139
commit fcf8670668
2 changed files with 5 additions and 5 deletions

View File

@@ -15,7 +15,7 @@ pub struct SpecialCase;
const MUSL_DEFAULT_ULP: u32 = 2;
/// Default ULP allowed to differ from multiprecision (i.e. infinite) results.
const MULTIPREC_DEFAULT_ULP: u32 = 1;
const MP_DEFAULT_ULP: u32 = 1;
/// ULP allowed to differ from the results returned by a test basis.
///
@@ -52,7 +52,7 @@ pub fn default_ulp(ctx: &CheckCtx) -> u32 {
// Defaults
(Musl, _) => MUSL_DEFAULT_ULP,
(Mpfr, _) => MULTIPREC_DEFAULT_ULP,
(Mpfr, _) => MP_DEFAULT_ULP,
}
}