pub fn expansion_sum(e: &[f64], f: &[f64], h: &mut [f64]) -> usize
Expand description

Sums two expansions.

Sets h = e + f. See the paper for details.

Maintains the nonoverlapping property. If round-to-even is used (as with IEEE 754), maintains the nonadjacent property as well. (That is, if e has one of these properties, so will h.) Does NOT maintain the strongly nonoverlapping property.