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:
committed by
Trevor Gross
parent
5032fcf139
commit
fcf8670668
@@ -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,
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user