src/config.ts
last analyzed

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 11
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 0
eloc 4
dl 0
loc 11
c 0
b 0
f 0
ccs 2
cts 2
cp 1
mnd 0
bc 0
fnc 0
bpm 0
cpm 0
noi 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