double-double
Version:
Pure double-double precision functions *with strict error bounds*.
19 lines (13 loc) • 581 B
text/typescript
import { expect } from 'chai';
import { describe } from 'mocha';
import { ddSum } from '../../../src/index.js';
describe('ddSum', function() {
it('should correctly sum some multiple double-double precision values together',
function() {
// Some double-doubles
let a = [-4.357806199228875e-10, 11_638_607.274152497];
let b = [8.661162134715461e-10, 9_722_431.969870245];
let c = [4.511949494578893e-11, -2_797_357.2918064594];
expect(ddSum([a,b,c])).to.eql([4.754550884944475e-10,18_563_681.952216282]);
});
});