You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
574 B
19 lines
574 B
/*
|
|
* This is a AssemblyScript port of the original Java version, which was written by
|
|
* Gil Tene as described in
|
|
* https://github.com/HdrHistogram/HdrHistogram
|
|
* and released to the public domain, as explained at
|
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
|
*/
|
|
|
|
import ulp from "../ulp";
|
|
|
|
describe("math ulp helper", () => {
|
|
it("should compute ulp of integer", () => {
|
|
expect<f64>(ulp(1)).toBe(2.220446049250313e-16);
|
|
});
|
|
|
|
it("should compute ulp of floating point number", () => {
|
|
expect<f64>(ulp(0.000333)).toBe(5.421010862427522e-20);
|
|
});
|
|
});
|