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.
53 lines
868 B
53 lines
868 B
4 years ago
|
var assert = require('assert')
|
||
|
var UINT64 = require('..').UINT64
|
||
|
|
||
|
describe('lessThan method', function () {
|
||
|
|
||
|
describe('0<1', function () {
|
||
|
|
||
|
it('should return true', function (done) {
|
||
|
var u = UINT64(0).lessThan( UINT64(1) )
|
||
|
|
||
|
assert( u )
|
||
|
done()
|
||
|
})
|
||
|
|
||
|
})
|
||
|
|
||
|
describe('1<2', function () {
|
||
|
|
||
|
it('should return true', function (done) {
|
||
|
var u = UINT64(1).lessThan( UINT64(2) )
|
||
|
|
||
|
assert( u )
|
||
|
done()
|
||
|
})
|
||
|
|
||
|
})
|
||
|
|
||
|
describe('1<2^16', function () {
|
||
|
|
||
|
it('should return true', function (done) {
|
||
|
var n = Math.pow(2, 16)
|
||
|
var u = UINT64(1).lessThan( UINT64(n) )
|
||
|
|
||
|
assert( u )
|
||
|
done()
|
||
|
})
|
||
|
|
||
|
})
|
||
|
|
||
|
describe('2^16<1', function () {
|
||
|
|
||
|
it('should return false', function (done) {
|
||
|
var n = Math.pow(2, 16)
|
||
|
var u = UINT64(n).lessThan( UINT64(1) )
|
||
|
|
||
|
assert( !u )
|
||
|
done()
|
||
|
})
|
||
|
|
||
|
})
|
||
|
|
||
|
})
|