bigdecimal/rounding.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
//! Rounding structures and subroutines
#![allow(dead_code)]
use crate::*;
use crate::arithmetic::{add_carry, store_carry, extend_adding_with_carry};
use stdlib;
// const DEFAULT_ROUNDING_MODE: RoundingMode = ${RUST_BIGDECIMAL_DEFAULT_ROUNDING_MODE} or HalfUp;
include!(concat!(env!("OUT_DIR"), "/default_rounding_mode.rs"));
/// Determines how to calculate the last digit of the number
///
/// Default rounding mode is HalfUp
///
#[derive(Clone, Copy, Debug, Hash, PartialEq, Eq)]
pub enum RoundingMode {
/// Always round away from zero
///
///
/// * 5.5 → 6.0
/// * 2.5 → 3.0
/// * 1.6 → 2.0
/// * 1.1 → 2.0
/// * -1.1 → -2.0
/// * -1.6 → -2.0
/// * -2.5 → -3.0
/// * -5.5 → -6.0
Up,
/// Always round towards zero
///
/// * 5.5 → 5.0
/// * 2.5 → 2.0
/// * 1.6 → 1.0
/// * 1.1 → 1.0
/// * -1.1 → -1.0
/// * -1.6 → -1.0
/// * -2.5 → -2.0
/// * -5.5 → -5.0
Down,
/// Towards +∞
///
/// * 5.5 → 6.0
/// * 2.5 → 3.0
/// * 1.6 → 2.0
/// * 1.1 → 2.0
/// * -1.1 → -1.0
/// * -1.6 → -1.0
/// * -2.5 → -2.0
/// * -5.5 → -5.0
Ceiling,
/// Towards -∞
///
/// * 5.5 → 5.0
/// * 2.5 → 2.0
/// * 1.6 → 1.0
/// * 1.1 → 1.0
/// * -1.1 → -2.0
/// * -1.6 → -2.0
/// * -2.5 → -3.0
/// * -5.5 → -6.0
Floor,
/// Round to 'nearest neighbor', or up if ending decimal is 5
///
/// * 5.5 → 6.0
/// * 2.5 → 3.0
/// * 1.6 → 2.0
/// * 1.1 → 1.0
/// * -1.1 → -1.0
/// * -1.6 → -2.0
/// * -2.5 → -3.0
/// * -5.5 → -6.0
HalfUp,
/// Round to 'nearest neighbor', or down if ending decimal is 5
///
/// * 5.5 → 5.0
/// * 2.5 → 2.0
/// * 1.6 → 2.0
/// * 1.1 → 1.0
/// * -1.1 → -1.0
/// * -1.6 → -2.0
/// * -2.5 → -2.0
/// * -5.5 → -5.0
HalfDown,
/// Round to 'nearest neighbor', if equidistant, round towards
/// nearest even digit
///
/// * 5.5 → 6.0
/// * 2.5 → 2.0
/// * 1.6 → 2.0
/// * 1.1 → 1.0
/// * -1.1 → -1.0
/// * -1.6 → -2.0
/// * -2.5 → -2.0
/// * -5.5 → -6.0
///
HalfEven,
}
impl RoundingMode {
/// Perform the rounding operation
///
/// Parameters
/// ----------
/// * sign (Sign) - Sign of the number to be rounded
/// * pair (u8, u8) - The two digits in question to be rounded.
/// i.e. to round 0.345 to two places, you would pass (4, 5).
/// As decimal digits, they
/// must be less than ten!
/// * trailing_zeros (bool) - True if all digits after the pair are zero.
/// This has an effect if the right hand digit is 0 or 5.
///
/// Returns
/// -------
/// Returns the first number of the pair, rounded. The sign is not preserved.
///
/// Examples
/// --------
/// - To round 2341, pass in `Plus, (4, 1), true` → get 4 or 5 depending on scheme
/// - To round -0.1051, to two places: `Minus, (0, 5), false` → returns either 0 or 1
/// - To round -0.1, pass in `true, (0, 1)` → returns either 0 or 1
///
/// Calculation of pair of digits from full number, and the replacement of that number
/// should be handled separately
///
pub fn round_pair(&self, sign: Sign, pair: (u8, u8), trailing_zeros: bool) -> u8 {
use self::RoundingMode::*;
use stdlib::cmp::Ordering::*;
let (lhs, rhs) = pair;
// if all zero after digit, never round
if rhs == 0 && trailing_zeros {
return lhs;
}
let up = lhs + 1;
let down = lhs;
match (*self, rhs.cmp(&5)) {
(Up, _) => up,
(Down, _) => down,
(Floor, _) => if sign == Sign::Minus { up } else { down },
(Ceiling, _) => if sign == Sign::Minus { down } else { up },
(_, Less) => down,
(_, Greater) => up,
(_, Equal) if !trailing_zeros => up,
(HalfUp, Equal) => up,
(HalfDown, Equal) => down,
(HalfEven, Equal) => if lhs % 2 == 0 { down } else { up },
}
}
/// Round digits, and if rounded up to 10, store 1 in carry and return zero
pub(crate) fn round_pair_with_carry(
&self,
sign: Sign,
pair: (u8, u8),
trailing_zeros: bool,
carry: &mut u8,
) -> u8 {
let r = self.round_pair(sign, pair, trailing_zeros);
store_carry(r, carry)
}
/// Round value at particular digit, returning replacement digit
///
/// Parameters
/// ----------
/// * at_digit (NonZeroU8) - 0-based index of digit at which to round.
/// 0 would be the first digit, and would
///
/// * sign (Sign) - Sign of the number to be rounded
/// * value (u32) - The number containing digits to be rounded.
/// * trailing_zeros (bool) - True if all digits after the value are zero.
///
/// Returns
/// -------
/// Returns the first number of the pair, rounded. The sign is not preserved.
///
/// Examples
/// --------
/// - To round 823418, at digit-index 3: `3, Plus, 823418, true` → 823000 or 824000, depending on scheme
/// - To round -100205, at digit-index 1: `1, Minus, 100205, true` → 100200 or 100210
///
/// Calculation of pair of digits from full number, and the replacement of that number
/// should be handled separately
///
pub fn round_u32(
&self,
at_digit: stdlib::num::NonZeroU8,
sign: Sign,
value: u32,
trailing_zeros: bool,
) -> u32 {
let shift = 10u32.pow(at_digit.get() as u32 - 1);
let splitter = shift * 10;
// split 'value' into high and low
let (top, bottom) = num_integer::div_rem(value, splitter);
let lhs = (top % 10) as u8;
let (rhs, remainder) = num_integer::div_rem(bottom, shift);
let pair = (lhs, rhs as u8);
let rounded = self.round_pair(sign, pair, trailing_zeros && remainder == 0);
// replace low digit with rounded value
let full = top - lhs as u32 + rounded as u32;
// shift rounded value back to position
full * splitter
}
/// Hint used to skip calculating trailing_zeros if they don't matter
fn needs_trailing_zeros(&self, insig_digit: u8) -> bool {
use RoundingMode::*;
// only need trailing zeros if the rounding digit is 0 or 5
if matches!(self, HalfUp | HalfDown | HalfEven) {
insig_digit == 5
} else {
insig_digit == 0
}
}
}
/// Return compile-time constant default rounding mode
///
/// Defined by RUST_BIGDECIMAL_DEFAULT_ROUNDING_MODE at compile time
///
impl Default for RoundingMode {
fn default() -> Self {
DEFAULT_ROUNDING_MODE
}
}
/// All non-digit information required to round digits
///
/// Just the mode and the sign.
///
#[derive(Debug,Clone,Copy)]
pub(crate) struct NonDigitRoundingData {
/// Rounding mode
pub mode: RoundingMode,
/// Sign of digits
pub sign: Sign,
}
impl NonDigitRoundingData {
/// Round pair of digits, storing overflow (10) in the carry
pub fn round_pair(&self, pair: (u8, u8), trailing_zeros: bool) -> u8 {
self.mode.round_pair(self.sign, pair, trailing_zeros)
}
/// round-pair with carry-digits
pub fn round_pair_with_carry(&self, pair: (u8, u8), trailing_zeros: bool, carry: &mut u8) -> u8 {
self.mode.round_pair_with_carry(self.sign, pair, trailing_zeros, carry)
}
/// Use sign and default rounding mode
pub fn default_with_sign(sign: Sign) -> Self {
NonDigitRoundingData { sign, mode: RoundingMode::default() }
}
}
/// Relevant information about insignificant digits, used for rounding
///
/// If rounding at indicated point:
///
/// ```txt
/// aaaaizzzzzzzz
/// ^
/// ```
///
/// 'a' values are significant, 'i' is the insignificant digit,
/// and trailing_zeros is true if all 'z' are 0.
///
#[derive(Debug,Clone,Copy)]
pub(crate) struct InsigData {
/// highest insignificant digit
pub digit: u8,
/// true if all digits more insignificant than 'digit' is zero
///
/// This is only useful if relevant for the rounding mode, it
/// may be 'wrong' in these cases.
pub trailing_zeros: bool,
/// rounding-mode and sign
pub rounding_data: NonDigitRoundingData
}
impl InsigData {
/// Build from insig data and lazily calcuated trailing-zeros callable
pub fn from_digit_and_lazy_trailing_zeros(
rounder: NonDigitRoundingData,
insig_digit: u8,
calc_trailing_zeros: impl FnOnce() -> bool
) -> Self {
Self {
digit: insig_digit,
trailing_zeros: rounder.mode.needs_trailing_zeros(insig_digit) && calc_trailing_zeros(),
rounding_data: rounder,
}
}
/// Build from slice of insignificant little-endian digits
pub fn from_digit_slice(rounder: NonDigitRoundingData, digits: &[u8]) -> Self {
match digits.split_last() {
Some((&d0, trailing)) => {
Self::from_digit_and_lazy_trailing_zeros(
rounder, d0, || trailing.iter().all(Zero::is_zero)
)
}
None => {
Self {
digit: 0,
trailing_zeros: true,
rounding_data: rounder,
}
}
}
}
/// from sum of overlapping digits, (a is longer than b)
pub fn from_overlapping_digits_backward_sum(
rounder: NonDigitRoundingData,
mut a_digits: stdlib::iter::Rev<stdlib::slice::Iter<u8>>,
mut b_digits: stdlib::iter::Rev<stdlib::slice::Iter<u8>>,
carry: &mut u8,
) -> Self {
debug_assert!(a_digits.len() >= b_digits.len());
debug_assert_eq!(carry, &0);
// most-significant insignificant digit
let insig_digit;
match (a_digits.next(), b_digits.next()) {
(Some(a), Some(b)) => {
// store 'full', initial sum, we will handle carry below
insig_digit = a + b;
}
(Some(d), None) | (None, Some(d)) => {
insig_digit = *d;
}
(None, None) => {
// both digit slices were empty; all zeros
return Self {
digit: 0,
trailing_zeros: true,
rounding_data: rounder,
};
}
};
// find first non-nine value
let mut sum = 9;
while sum == 9 {
let next_a = a_digits.next().unwrap_or(&0);
let next_b = b_digits.next().unwrap_or(&0);
sum = next_a + next_b;
}
// if previous sum was greater than ten,
// the one would carry through all the 9s
let sum = store_carry(sum, carry);
// propagate carry to the highest insignificant digit
let insig_digit = add_carry(insig_digit, carry);
// if the last 'sum' value isn't zero, or if any remaining
// digit is not zero, then it's not trailing zeros
let trailing_zeros = sum == 0
&& rounder.mode.needs_trailing_zeros(insig_digit)
&& a_digits.all(Zero::is_zero)
&& b_digits.all(Zero::is_zero);
Self {
digit: insig_digit,
trailing_zeros: trailing_zeros,
rounding_data: rounder,
}
}
pub fn round_digit(&self, digit: u8) -> u8 {
self.rounding_data.round_pair((digit, self.digit), self.trailing_zeros)
}
pub fn round_digit_with_carry(&self, digit: u8, carry: &mut u8) -> u8 {
self.rounding_data.round_pair_with_carry((digit, self.digit), self.trailing_zeros, carry)
}
pub fn round_slice_into(&self, dest: &mut Vec<u8>, digits: &[u8]) {
let (&d0, rest) = digits.split_first().unwrap_or((&0, &[]));
let digits = rest.iter().copied();
let mut carry = 0;
let r0 = self.round_digit_with_carry(d0, &mut carry);
dest.push(r0);
extend_adding_with_carry(dest, digits, &mut carry);
if !carry.is_zero() {
dest.push(carry);
}
}
#[allow(dead_code)]
pub fn round_slice_into_with_carry(&self, dest: &mut Vec<u8>, digits: &[u8], carry: &mut u8) {
let (&d0, rest) = digits.split_first().unwrap_or((&0, &[]));
let digits = rest.iter().copied();
let r0 = self.round_digit_with_carry(d0, carry);
dest.push(r0);
extend_adding_with_carry(dest, digits, carry);
}
}
#[cfg(test)]
include!("rounding.tests.rs");