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

Method appliedNonFunctions

src/compute-engine/index.ts:1734–1750  ·  view source on GitHub ↗

* The symbols that appear in function-application syntax — `f(…)` — in * `latex` but are **not** defined as functions in the current scope, and so * are interpreted as implicit multiplication (`f·x`) or left unresolved. * * Resolution is scope-aware: a name declared as a function (e.g. b

(latex: string)

Source from the content-addressed store, hash-verified

1732 // epoch event. Deliberately not a full `_reset()`: unlike precision, no
1733 // stored value needs to be recomputed.
1734 this._noteStateEvent({ kind: 'config' });
1735 }
1736 }
1737
1738 /** The innermost active `WithRandomSeed` frame, or `undefined` when draws
1739 * are live. Swapped by `withRandomSeedFrame`, exactly like `_deadlineFrame`.
1740 * @internal
1741 */
1742 get _randomFrame(): RandomSeedFrame | undefined {
1743 return this._runtimeState.randomFrame;
1744 }
1745
1746 set _randomFrame(value: RandomSeedFrame | undefined) {
1747 this._runtimeState.randomFrame = value;
1748 }
1749
1750 /** @internal Draw the next uniform in [0, 1).
1751 *
1752 * Inside a `WithRandomSeed` frame the draw is the counter-based
1753 * `hash(seed, n)` of the innermost frame, and the frame's counter advances

Callers

nothing calls this directly

Calls 6

lookupDefinitionMethod · 0.95
isOperatorDefFunction · 0.90
isValueDefFunction · 0.90
parseMethod · 0.65
fromMethod · 0.45

Tested by

no test coverage detected