(sum, scale, prod, compress)
| 34210 | var NUM_EXPANDED = 6 |
| 34211 | |
| 34212 | function determinant_2(sum, scale, prod, compress) { |
| 34213 | return function robustDeterminant2(m) { |
| 34214 | return compress(sum(prod(m[0][0], m[1][1]), prod(-m[0][1], m[1][0]))) |
| 34215 | } |
| 34216 | } |
| 34217 | |
| 34218 | function determinant_3(sum, scale, prod, compress) { |
| 34219 | return function robustDeterminant3(m) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…