Total Complexity | 0 |
Complexity/F | 0 |
Lines of Code | 11 |
Function Count | 0 |
Duplicated Lines | 0 |
Ratio | 0 % |
Coverage | 100% |
Changes | 0 |
1 | /** |
||
2 | * Machine epsilon gives an upper bound on the relative error due to rounding in floating point arithmetic. |
||
3 | */ |
||
4 | 6 | export const EPSILON = 1e-16 |
|
5 | // @todo why not Number.EPSILON? |
||
6 | |||
7 | /** |
||
8 | * Limit on the number of loops in algorithms. |
||
9 | */ |
||
10 | export const MAX_LOOPS = 512 |
||
11 |