[go: up one dir, main page]

Dot7

Type Alias Dot7 

Source
pub type Dot7<F> = DotK<F, Sum6<F>>;
Expand description

DotK with seven cascaded accumulators

§Examples

use accurate::traits::*;
use accurate::dot::Dot7;

let d = Dot7::zero() + (1.0, 1.0) + (2.0, 2.0) + (3.0, 3.0);
assert_eq!(14.0f64, d.dot());

§References

Based on Ogita, Rump and Oishi 05

Aliased Type§

pub struct Dot7<F> { /* private fields */ }