///|
/// Compute the fused multiply-add of `a`, `b`, and `c`.
pub fn fma(a : Double, b : Double, c : Double) -> Double {
  a * b + c
}