StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics https://doi.org/10.1109/TVCG.2020.3030352
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.
 
 
 
 
StackGenVis/frontend/node_modules/ext/test/math/ceil-10.js

13 lines
333 B

"use strict";
var assert = require("chai").assert
, ceil10 = require("../../math/ceil-10");
describe("math/ceil-10", function () {
it("Should ceil", function () {
assert.equal(ceil10(55.51, -1), 55.6);
assert.equal(ceil10(51, 1), 60);
assert.equal(ceil10(-55.59, -1), -55.5);
assert.equal(ceil10(-59, 1), -50);
});
});