nerdamer-ts
Version:
javascript light-weight symbolic math expression evaluator
15 lines • 419 B
JavaScript
;
/// unused code
const { Settings } = require('./Settings');
const bigInt = require('./3rdparty/bigInt');
(function () {
Settings.CACHE.roots = {};
let x = 40, y = 40;
for (let i = 2; i <= x; i++) {
for (let j = 2; j <= y; j++) {
let nthpow = bigInt(i).pow(j);
Settings.CACHE.roots[nthpow + '-' + j] = i;
}
}
})();
//# sourceMappingURL=_unused.js.map