MCPcopy Create free account
hub / github.com/cortex-js/compute-engine / isLiteralInteger

Function isLiteralInteger

src/compute-engine/rubi/rubi-utils.ts:464–466  ·  view source on GitHub ↗
(e: Expression)

Source from the content-addressed store, hash-verified

462 if (leafCount(e) > SIMPLIFY_LEAF_CAP) return e;
463 const key = activeCaches ? e.toString() : '';
464 const cached = activeCaches?.simplify.get(key);
465 if (cached !== undefined) return cached;
466 const t0 = Date.now();
467 let r: Expression;
468 try {
469 r = e.simplify();

Callers 13

rubi-utils.tsFile · 0.85
intsFunction · 0.85
intQEFunction · 0.85
igtQEFunction · 0.85
intCmpFunction · 0.85
posAuxFunction · 0.85
simplerQFunction · 0.85
simplerSqrtQFunction · 0.85
rationalFnQFunction · 0.85
reciprocalToPowerRecFunction · 0.85
foeTestAuxFunction · 0.85

Calls 1

isNumberFunction · 0.90

Tested by

no test coverage detected