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

Function polyDiv

src/compute-engine/rubi/rubi-utils.ts:4452–4456  ·  view source on GitHub ↗
(args: Json[], ctx: Ctx)

Source from the content-addressed store, hash-verified

4450 if (!(isNumber(v) && v.isNumberLiteral)) return false;
4451 const re = v.re;
4452 const im = v.im ?? 0;
4453 return (
4454 typeof re === 'number' &&
4455 Number.isFinite(re) &&
4456 typeof im === 'number' &&
4457 Number.isFinite(im)
4458 );
4459 } catch {

Callers 1

rubi-utils.tsFile · 0.85

Calls 3

polyDivideXFunction · 0.85
failFunction · 0.85
buildFunction · 0.70

Tested by

no test coverage detected