flo-poly
Version:
A practical, root-focused JavaScript polynomial utility library.
13 lines (10 loc) • 347 B
text/typescript
import { assert, expect } from 'chai';
import { describe } from 'mocha';
import { equal, negate } from '../../../src/index.js';
describe('negate', function() {
it('should correctly negate some polynomials with double precision coefficients',
function() {
let p1 = [0.1, -0.2];
assert(equal(negate(p1), [-0.1, 0.2]));
});
});