UNPKG

quaeratin

Version:

An extended precision floating point library (as per Shewchuk) - precision only limited by overflow / underflow

10 lines (9 loc) 263 B
/** * Returns the absolute value of the given floating point expansion. * * * see [Shewchuk](https://people.eecs.berkeley.edu/~jrs/papers/robustr.pdf) * * @param e a floating point expansion */ declare function eAbs(e: number[]): number[]; export { eAbs };