* 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)
| 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 |
nothing calls this directly
no test coverage detected