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/bit-twiddle/test/interleave3.js

17 lines
406 B

4 years ago
var test = require("tape")
, bits = require("../twiddle.js");
test("interleave3", function(t) {
for(var x=0; x<=25; ++x) {
for(var y=0; y<=25; ++y) {
for(var z=0; z<=25; ++z) {
var h = bits.interleave3(x, y, z);
t.equal(bits.deinterleave3(h, 0), x);
t.equal(bits.deinterleave3(h, 1), y);
t.equal(bits.deinterleave3(h, 2), z);
}
}
}
t.end();
});