@cortex-js/compute-engine 0.35.6 → 0.50.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +121 -5
- package/dist/compute-engine.esm.js +50435 -44944
- package/dist/compute-engine.min.esm.js +1072 -69
- package/dist/compute-engine.min.umd.js +1072 -69
- package/dist/compute-engine.umd.js +50540 -45049
- package/dist/math-json.esm.js +2 -2
- package/dist/math-json.min.esm.js +2 -2
- package/dist/math-json.min.umd.js +2 -2
- package/dist/math-json.umd.js +2 -2
- package/dist/types/common/ansi-codes.d.ts +1 -1
- package/dist/types/common/configuration-change.d.ts +1 -1
- package/dist/types/common/fuzzy-string-match.d.ts +1 -1
- package/dist/types/common/grapheme-splitter.d.ts +1 -1
- package/dist/types/common/interruptible.d.ts +1 -1
- package/dist/types/common/one-of.d.ts +1 -1
- package/dist/types/common/signals.d.ts +1 -1
- package/dist/types/common/type/ast-nodes.d.ts +1 -1
- package/dist/types/common/type/boxed-type.d.ts +1 -1
- package/dist/types/common/type/lexer.d.ts +1 -1
- package/dist/types/common/type/parse.d.ts +1 -1
- package/dist/types/common/type/parser.d.ts +8 -1
- package/dist/types/common/type/primitive.d.ts +2 -1
- package/dist/types/common/type/reduce.d.ts +1 -1
- package/dist/types/common/type/serialize.d.ts +1 -1
- package/dist/types/common/type/subtype.d.ts +1 -1
- package/dist/types/common/type/type-builder.d.ts +1 -1
- package/dist/types/common/type/types.d.ts +1 -1
- package/dist/types/common/type/utils.d.ts +3 -2
- package/dist/types/common/utils.d.ts +1 -1
- package/dist/types/compute-engine/assume.d.ts +4 -22
- package/dist/types/compute-engine/boxed-expression/abstract-boxed-expression.d.ts +63 -76
- package/dist/types/compute-engine/boxed-expression/apply.d.ts +4 -4
- package/dist/types/compute-engine/boxed-expression/arithmetic-add.d.ts +15 -6
- package/dist/types/compute-engine/boxed-expression/arithmetic-mul-div.d.ts +72 -6
- package/dist/types/compute-engine/boxed-expression/arithmetic-power.d.ts +8 -8
- package/dist/types/compute-engine/boxed-expression/ascii-math.d.ts +5 -8
- package/dist/types/compute-engine/boxed-expression/box.d.ts +63 -8
- package/dist/types/compute-engine/boxed-expression/boxed-dictionary.d.ts +13 -12
- package/dist/types/compute-engine/boxed-expression/boxed-function.d.ts +44 -43
- package/dist/types/compute-engine/boxed-expression/boxed-number.d.ts +31 -30
- package/dist/types/compute-engine/boxed-expression/boxed-operator-definition.d.ts +18 -18
- package/dist/types/compute-engine/boxed-expression/boxed-patterns.d.ts +5 -37
- package/dist/types/compute-engine/boxed-expression/boxed-string.d.ts +5 -4
- package/dist/types/compute-engine/boxed-expression/boxed-symbol.d.ts +34 -33
- package/dist/types/compute-engine/boxed-expression/boxed-tensor.d.ts +34 -33
- package/dist/types/compute-engine/boxed-expression/boxed-value-definition.d.ts +8 -8
- package/dist/types/compute-engine/boxed-expression/cache.d.ts +1 -1
- package/dist/types/compute-engine/boxed-expression/canonical-utils.d.ts +2 -2
- package/dist/types/compute-engine/boxed-expression/canonical.d.ts +2 -2
- package/dist/types/compute-engine/boxed-expression/compare.d.ts +4 -4
- package/dist/types/compute-engine/boxed-expression/constants.d.ts +6 -0
- package/dist/types/compute-engine/boxed-expression/expand.d.ts +4 -5
- package/dist/types/compute-engine/boxed-expression/expression-map.d.ts +9 -9
- package/dist/types/compute-engine/boxed-expression/factor.d.ts +7 -7
- package/dist/types/compute-engine/boxed-expression/flatten.d.ts +4 -13
- package/dist/types/compute-engine/boxed-expression/hold.d.ts +3 -3
- package/dist/types/compute-engine/boxed-expression/inequality-bounds.d.ts +21 -0
- package/dist/types/compute-engine/boxed-expression/invisible-operator.d.ts +4 -0
- package/dist/types/compute-engine/boxed-expression/match.d.ts +2 -2
- package/dist/types/compute-engine/boxed-expression/negate.d.ts +4 -4
- package/dist/types/compute-engine/boxed-expression/numerics.d.ts +8 -8
- package/dist/types/compute-engine/boxed-expression/order.d.ts +14 -14
- package/dist/types/compute-engine/boxed-expression/pattern-utils.d.ts +41 -0
- package/dist/types/compute-engine/boxed-expression/polynomial-degree.d.ts +18 -0
- package/dist/types/compute-engine/boxed-expression/polynomials.d.ts +12 -35
- package/dist/types/compute-engine/boxed-expression/predicates.d.ts +2 -0
- package/dist/types/compute-engine/boxed-expression/rules.d.ts +51 -51
- package/dist/types/compute-engine/boxed-expression/serialize.d.ts +3 -3
- package/dist/types/compute-engine/boxed-expression/sgn.d.ts +2 -2
- package/dist/types/compute-engine/boxed-expression/simplify.d.ts +2 -2
- package/dist/types/compute-engine/boxed-expression/solve-linear-system.d.ts +8 -8
- package/dist/types/compute-engine/boxed-expression/solve.d.ts +3 -11
- package/dist/types/compute-engine/boxed-expression/trigonometry.d.ts +7 -7
- package/dist/types/compute-engine/boxed-expression/type-guards.d.ts +31 -0
- package/dist/types/compute-engine/boxed-expression/utils.d.ts +13 -13
- package/dist/types/compute-engine/boxed-expression/validate.d.ts +10 -10
- package/dist/types/compute-engine/collection-utils.d.ts +4 -4
- package/dist/types/compute-engine/compilation/base-compiler.d.ts +3 -3
- package/dist/types/compute-engine/compilation/compile-expression.d.ts +25 -0
- package/dist/types/compute-engine/compilation/glsl-target.d.ts +12 -41
- package/dist/types/compute-engine/compilation/gpu-target.d.ts +50 -0
- package/dist/types/compute-engine/compilation/interval-glsl-target.d.ts +11 -11
- package/dist/types/compute-engine/compilation/interval-javascript-target.d.ts +7 -7
- package/dist/types/compute-engine/compilation/interval-wgsl-target.d.ts +54 -0
- package/dist/types/compute-engine/compilation/javascript-target.d.ts +6 -6
- package/dist/types/compute-engine/compilation/python-target.d.ts +61 -0
- package/dist/types/compute-engine/compilation/types.d.ts +27 -22
- package/dist/types/compute-engine/compilation/wgsl-target.d.ts +41 -0
- package/dist/types/compute-engine/cost-function.d.ts +3 -3
- package/dist/types/compute-engine/engine-assumptions.d.ts +6 -0
- package/dist/types/compute-engine/engine-cache.d.ts +6 -0
- package/dist/types/compute-engine/engine-common-symbols.d.ts +6 -0
- package/dist/types/compute-engine/engine-compilation-targets.d.ts +17 -0
- package/dist/types/compute-engine/engine-configuration-lifecycle.d.ts +15 -0
- package/dist/types/compute-engine/engine-declarations.d.ts +19 -0
- package/dist/types/compute-engine/engine-expression-entrypoints.d.ts +44 -0
- package/dist/types/compute-engine/engine-extension-contracts.d.ts +9 -0
- package/dist/types/compute-engine/engine-latex-dictionary-state.d.ts +13 -0
- package/dist/types/compute-engine/engine-library-bootstrap.d.ts +6 -0
- package/dist/types/compute-engine/engine-numeric-configuration.d.ts +34 -0
- package/dist/types/compute-engine/engine-parse-entrypoint.d.ts +7 -0
- package/dist/types/compute-engine/engine-runtime-state.d.ts +19 -0
- package/dist/types/compute-engine/engine-scope.d.ts +13 -0
- package/dist/types/compute-engine/engine-sequences.d.ts +14 -0
- package/dist/types/compute-engine/engine-simplification-rules.d.ts +15 -0
- package/dist/types/compute-engine/engine-startup-coordinator.d.ts +28 -0
- package/dist/types/compute-engine/engine-type-resolver.d.ts +12 -0
- package/dist/types/compute-engine/engine-validation-entrypoints.d.ts +13 -0
- package/dist/types/compute-engine/free-functions.d.ts +20 -0
- package/dist/types/compute-engine/function-utils.d.ts +10 -10
- package/dist/types/compute-engine/global-types.d.ts +5 -3301
- package/dist/types/compute-engine/index.d.ts +155 -112
- package/dist/types/compute-engine/interval/arithmetic.d.ts +1 -1
- package/dist/types/compute-engine/interval/comparison.d.ts +1 -1
- package/dist/types/compute-engine/interval/elementary.d.ts +1 -1
- package/dist/types/compute-engine/interval/index.d.ts +1 -1
- package/dist/types/compute-engine/interval/trigonometric.d.ts +1 -1
- package/dist/types/compute-engine/interval/types.d.ts +1 -1
- package/dist/types/compute-engine/interval/util.d.ts +1 -1
- package/dist/types/compute-engine/latex-syntax/dictionary/definitions-algebra.d.ts +1 -1
- package/dist/types/compute-engine/latex-syntax/dictionary/definitions-arithmetic.d.ts +1 -1
- package/dist/types/compute-engine/latex-syntax/dictionary/definitions-calculus.d.ts +1 -1
- package/dist/types/compute-engine/latex-syntax/dictionary/definitions-complex.d.ts +1 -1
- package/dist/types/compute-engine/latex-syntax/dictionary/definitions-core.d.ts +1 -1
- package/dist/types/compute-engine/latex-syntax/dictionary/definitions-linear-algebra.d.ts +1 -1
- package/dist/types/compute-engine/latex-syntax/dictionary/definitions-logic.d.ts +1 -1
- package/dist/types/compute-engine/latex-syntax/dictionary/definitions-other.d.ts +1 -1
- package/dist/types/compute-engine/latex-syntax/dictionary/definitions-relational-operators.d.ts +1 -1
- package/dist/types/compute-engine/latex-syntax/dictionary/definitions-sets.d.ts +1 -1
- package/dist/types/compute-engine/latex-syntax/dictionary/definitions-statistics.d.ts +1 -1
- package/dist/types/compute-engine/latex-syntax/dictionary/definitions-symbols.d.ts +1 -1
- package/dist/types/compute-engine/latex-syntax/dictionary/definitions-trigonometry.d.ts +1 -1
- package/dist/types/compute-engine/latex-syntax/dictionary/definitions.d.ts +4 -80
- package/dist/types/compute-engine/latex-syntax/dictionary/indexed-types.d.ts +83 -0
- package/dist/types/compute-engine/latex-syntax/parse-number.d.ts +28 -0
- package/dist/types/compute-engine/latex-syntax/parse-symbol.d.ts +2 -2
- package/dist/types/compute-engine/latex-syntax/parse.d.ts +23 -33
- package/dist/types/compute-engine/latex-syntax/serialize-number.d.ts +2 -2
- package/dist/types/compute-engine/latex-syntax/serializer-style.d.ts +8 -8
- package/dist/types/compute-engine/latex-syntax/serializer.d.ts +15 -15
- package/dist/types/compute-engine/latex-syntax/tokenizer.d.ts +1 -1
- package/dist/types/compute-engine/latex-syntax/types.d.ts +73 -53
- package/dist/types/compute-engine/latex-syntax/utils.d.ts +1 -1
- package/dist/types/compute-engine/library/arithmetic.d.ts +1 -2
- package/dist/types/compute-engine/library/calculus.d.ts +1 -1
- package/dist/types/compute-engine/library/collections.d.ts +4 -4
- package/dist/types/compute-engine/library/combinatorics.d.ts +1 -1
- package/dist/types/compute-engine/library/complex.d.ts +1 -1
- package/dist/types/compute-engine/library/control-structures.d.ts +1 -1
- package/dist/types/compute-engine/library/core.d.ts +1 -1
- package/dist/types/compute-engine/library/library.d.ts +19 -6
- package/dist/types/compute-engine/library/linear-algebra.d.ts +1 -1
- package/dist/types/compute-engine/library/logic-analysis.d.ts +19 -32
- package/dist/types/compute-engine/library/logic.d.ts +1 -5
- package/dist/types/compute-engine/library/number-theory.d.ts +1 -1
- package/dist/types/compute-engine/library/polynomials.d.ts +1 -1
- package/dist/types/compute-engine/library/random-expression.d.ts +2 -2
- package/dist/types/compute-engine/library/relational-operator.d.ts +1 -1
- package/dist/types/compute-engine/library/sets.d.ts +1 -1
- package/dist/types/compute-engine/library/statistics.d.ts +1 -1
- package/dist/types/compute-engine/library/trigonometry.d.ts +1 -1
- package/dist/types/compute-engine/library/type-handlers.d.ts +4 -0
- package/dist/types/compute-engine/library/utils.d.ts +12 -12
- package/dist/types/compute-engine/numeric-value/big-numeric-value.d.ts +5 -5
- package/dist/types/compute-engine/numeric-value/exact-numeric-value.d.ts +5 -5
- package/dist/types/compute-engine/numeric-value/machine-numeric-value.d.ts +5 -5
- package/dist/types/compute-engine/numeric-value/types.d.ts +2 -3
- package/dist/types/compute-engine/numerics/bigint.d.ts +1 -1
- package/dist/types/compute-engine/numerics/expression.d.ts +3 -3
- package/dist/types/compute-engine/numerics/interval.d.ts +2 -2
- package/dist/types/compute-engine/numerics/monte-carlo.d.ts +1 -1
- package/dist/types/compute-engine/numerics/numeric-bigint.d.ts +1 -1
- package/dist/types/compute-engine/numerics/numeric-bignum.d.ts +1 -1
- package/dist/types/compute-engine/numerics/numeric-complex.d.ts +1 -1
- package/dist/types/compute-engine/numerics/numeric.d.ts +1 -1
- package/dist/types/compute-engine/numerics/primes.d.ts +1 -1
- package/dist/types/compute-engine/numerics/rationals.d.ts +4 -4
- package/dist/types/compute-engine/numerics/richardson.d.ts +1 -1
- package/dist/types/compute-engine/numerics/special-functions.d.ts +120 -1
- package/dist/types/compute-engine/numerics/statistics.d.ts +1 -2
- package/dist/types/compute-engine/numerics/strings.d.ts +1 -1
- package/dist/types/compute-engine/numerics/types.d.ts +3 -1
- package/dist/types/compute-engine/oeis.d.ts +3 -3
- package/dist/types/compute-engine/sequence.d.ts +13 -13
- package/dist/types/compute-engine/symbolic/antiderivative.d.ts +2 -2
- package/dist/types/compute-engine/symbolic/derivative.d.ts +3 -3
- package/dist/types/compute-engine/symbolic/distribute.d.ts +2 -2
- package/dist/types/compute-engine/symbolic/fu-cost.d.ts +6 -6
- package/dist/types/compute-engine/symbolic/fu-transforms.d.ts +46 -46
- package/dist/types/compute-engine/symbolic/fu.d.ts +4 -4
- package/dist/types/compute-engine/symbolic/logic-utils.d.ts +54 -0
- package/dist/types/compute-engine/symbolic/simplify-abs.d.ts +4 -4
- package/dist/types/compute-engine/symbolic/simplify-divide.d.ts +2 -2
- package/dist/types/compute-engine/symbolic/simplify-hyperbolic.d.ts +2 -2
- package/dist/types/compute-engine/symbolic/simplify-infinity.d.ts +2 -2
- package/dist/types/compute-engine/symbolic/simplify-log.d.ts +2 -2
- package/dist/types/compute-engine/symbolic/simplify-logic.d.ts +5 -0
- package/dist/types/compute-engine/symbolic/simplify-power.d.ts +2 -2
- package/dist/types/compute-engine/symbolic/simplify-product.d.ts +2 -2
- package/dist/types/compute-engine/symbolic/simplify-rules.d.ts +65 -4
- package/dist/types/compute-engine/symbolic/simplify-sum.d.ts +2 -2
- package/dist/types/compute-engine/symbolic/simplify-trig.d.ts +2 -2
- package/dist/types/compute-engine/tensor/tensor-fields.d.ts +42 -42
- package/dist/types/compute-engine/tensor/tensors.d.ts +4 -4
- package/dist/types/compute-engine/types-definitions.d.ts +900 -0
- package/dist/types/compute-engine/types-engine.d.ts +375 -0
- package/dist/types/compute-engine/types-evaluation.d.ts +67 -0
- package/dist/types/compute-engine/types-expression.d.ts +1655 -0
- package/dist/types/compute-engine/types-kernel-evaluation.d.ts +164 -0
- package/dist/types/compute-engine/types-kernel-serialization.d.ts +147 -0
- package/dist/types/compute-engine/types-serialization.d.ts +23 -0
- package/dist/types/compute-engine/types.d.ts +2 -2
- package/dist/types/compute-engine.d.ts +16 -3
- package/dist/types/math-json/symbols.d.ts +1 -1
- package/dist/types/math-json/types.d.ts +3 -3
- package/dist/types/math-json/utils.d.ts +31 -31
- package/dist/types/math-json.d.ts +2 -2
- package/package.json +8 -1
- package/dist/types/compute-engine/boxed-expression/product.d.ts +0 -66
- package/dist/types/compute-engine/boxed-expression/terms.d.ts +0 -10
- package/dist/types/compute-engine/library/invisible-operator.d.ts +0 -4
- package/dist/types/compute-engine/library/logic-utils.d.ts +0 -54
|
@@ -1,28 +1,34 @@
|
|
|
1
|
-
/* 0.
|
|
1
|
+
/* 0.50.0 */
|
|
2
2
|
import { Decimal } from 'decimal.js';
|
|
3
3
|
import { Type, TypeResolver, TypeString } from '../common/type/types';
|
|
4
4
|
import { BoxedType } from '../common/type/boxed-type';
|
|
5
5
|
import type { OneOf } from '../common/one-of';
|
|
6
|
-
import { ConfigurationChangeListener } from '../common/configuration-change';
|
|
7
|
-
import type {
|
|
8
|
-
import type { ValueDefinition, OperatorDefinition, AngularUnit, AssignValue, AssumeResult,
|
|
9
|
-
import type { LatexDictionaryEntry, LatexString, LibraryCategory
|
|
6
|
+
import type { ConfigurationChangeListener } from '../common/configuration-change';
|
|
7
|
+
import type { MathJsonExpression, MathJsonSymbol, MathJsonNumberObject } from '../math-json/types';
|
|
8
|
+
import type { ValueDefinition, OperatorDefinition, AngularUnit, AssignValue, AssumeResult, Expression, BoxedRule, BoxedRuleSet, BoxedSubstitution, CanonicalOptions, Metadata, Rule, Scope, EvalContext, ExpressionInput, IComputeEngine, BoxedDefinition, SymbolDefinition, SequenceDefinition, SequenceStatus, SequenceInfo, OEISSequenceInfo, OEISOptions, LibraryDefinition } from './global-types';
|
|
9
|
+
import type { LatexDictionaryEntry, LatexString, LibraryCategory } from './latex-syntax/types';
|
|
10
10
|
import { type IndexedLatexDictionary } from './latex-syntax/dictionary/definitions';
|
|
11
11
|
import type { BigNum, Rational } from './numerics/types';
|
|
12
12
|
import { ExactNumericValueData, NumericValue, NumericValueData } from './numeric-value/types';
|
|
13
|
+
import type { FormOption } from './types-serialization';
|
|
13
14
|
import { validatePattern } from './boxed-expression/boxed-patterns';
|
|
14
|
-
import {
|
|
15
|
+
import { factorPerfectSquare, factorDifferenceOfSquares, factorQuadratic, factorPolynomial } from './boxed-expression/factor';
|
|
15
16
|
import './boxed-expression/serialize';
|
|
16
|
-
|
|
17
|
+
import { type ParseEntrypointOptions } from './engine-parse-entrypoint';
|
|
18
|
+
export type * from './global-types';
|
|
19
|
+
export { parse, simplify, evaluate, N, assign, expand, expandAll, factor, solve, compile, getDefaultEngine, } from './free-functions';
|
|
17
20
|
export { validatePattern };
|
|
18
|
-
export {
|
|
19
|
-
export type { CompileTarget, CompiledOperators, CompiledFunctions, CompilationOptions,
|
|
21
|
+
export { factorPerfectSquare, factorDifferenceOfSquares, factorQuadratic, factorPolynomial, };
|
|
22
|
+
export type { CompileTarget, CompiledOperators, CompiledFunctions, CompilationOptions, CompilationResult, LanguageTarget, TargetSource, CompiledFunction, } from './compilation/types';
|
|
20
23
|
export { JavaScriptTarget } from './compilation/javascript-target';
|
|
21
24
|
export { GLSLTarget } from './compilation/glsl-target';
|
|
25
|
+
export { PythonTarget } from './compilation/python-target';
|
|
22
26
|
export { IntervalJavaScriptTarget } from './compilation/interval-javascript-target';
|
|
23
27
|
export { IntervalGLSLTarget } from './compilation/interval-glsl-target';
|
|
24
28
|
export { BaseCompiler } from './compilation/base-compiler';
|
|
25
29
|
import type { LanguageTarget } from './compilation/types';
|
|
30
|
+
import { compile as _compile } from './compilation/compile-expression';
|
|
31
|
+
import { fu as _fu } from './symbolic/fu';
|
|
26
32
|
/**
|
|
27
33
|
*
|
|
28
34
|
* To use the Compute Engine, create a `ComputeEngine` instance:
|
|
@@ -56,21 +62,21 @@ import type { LanguageTarget } from './compilation/types';
|
|
|
56
62
|
*
|
|
57
63
|
*/
|
|
58
64
|
export declare class ComputeEngine implements IComputeEngine {
|
|
59
|
-
readonly True:
|
|
60
|
-
readonly False:
|
|
61
|
-
readonly Pi:
|
|
62
|
-
readonly E:
|
|
63
|
-
readonly Nothing:
|
|
64
|
-
readonly Zero:
|
|
65
|
-
readonly One:
|
|
66
|
-
readonly Half:
|
|
67
|
-
readonly NegativeOne:
|
|
68
|
-
readonly Two:
|
|
69
|
-
readonly I:
|
|
70
|
-
readonly NaN:
|
|
71
|
-
readonly PositiveInfinity:
|
|
72
|
-
readonly NegativeInfinity:
|
|
73
|
-
readonly ComplexInfinity:
|
|
65
|
+
readonly True: Expression;
|
|
66
|
+
readonly False: Expression;
|
|
67
|
+
readonly Pi: Expression;
|
|
68
|
+
readonly E: Expression;
|
|
69
|
+
readonly Nothing: Expression;
|
|
70
|
+
readonly Zero: Expression;
|
|
71
|
+
readonly One: Expression;
|
|
72
|
+
readonly Half: Expression;
|
|
73
|
+
readonly NegativeOne: Expression;
|
|
74
|
+
readonly Two: Expression;
|
|
75
|
+
readonly I: Expression;
|
|
76
|
+
readonly NaN: Expression;
|
|
77
|
+
readonly PositiveInfinity: Expression;
|
|
78
|
+
readonly NegativeInfinity: Expression;
|
|
79
|
+
readonly ComplexInfinity: Expression;
|
|
74
80
|
/** The symbol separating the whole part of a number from its fractional
|
|
75
81
|
* part in a LaTeX string.
|
|
76
82
|
*
|
|
@@ -83,35 +89,21 @@ export declare class ComputeEngine implements IComputeEngine {
|
|
|
83
89
|
* */
|
|
84
90
|
decimalSeparator: LatexString;
|
|
85
91
|
/** @internal */
|
|
86
|
-
|
|
92
|
+
private _numericConfiguration;
|
|
87
93
|
/** @internal */
|
|
88
|
-
|
|
89
|
-
/** @internal */
|
|
90
|
-
|
|
91
|
-
/** @internal */
|
|
92
|
-
|
|
93
|
-
/** @internal */
|
|
94
|
-
_BIGNUM_HALF: Decimal;
|
|
95
|
-
/** @internal */
|
|
96
|
-
_BIGNUM_PI: Decimal;
|
|
97
|
-
/** @internal */
|
|
98
|
-
_BIGNUM_NEGATIVE_ONE: Decimal;
|
|
99
|
-
/** @internal */
|
|
100
|
-
private _precision;
|
|
101
|
-
/** @ internal */
|
|
102
|
-
private _angularUnit;
|
|
103
|
-
/** @internal */
|
|
104
|
-
private _tolerance;
|
|
105
|
-
/** @internal */
|
|
106
|
-
private _bignumTolerance;
|
|
107
|
-
private _negBignumTolerance;
|
|
108
|
-
/** @internal */
|
|
109
|
-
private __cache;
|
|
110
|
-
private _configurationChangeTracker;
|
|
94
|
+
private _cacheStore;
|
|
95
|
+
/** @internal Runtime execution limits and verification mode state */
|
|
96
|
+
private _runtimeState;
|
|
97
|
+
/** @internal Configuration change generation/tracking lifecycle */
|
|
98
|
+
private _configurationLifecycle;
|
|
111
99
|
/** @internal */
|
|
112
100
|
private _cost?;
|
|
101
|
+
/** @internal Backing state for simplificationRules */
|
|
102
|
+
private _simplificationRules;
|
|
113
103
|
/** @internal Registry of compilation targets */
|
|
114
104
|
private _compilationTargets;
|
|
105
|
+
/** @internal Fu trigonometric simplification algorithm */
|
|
106
|
+
_fuAlgorithm: typeof _fu;
|
|
115
107
|
/** @internal */
|
|
116
108
|
private _commonSymbols;
|
|
117
109
|
/** @internal */
|
|
@@ -129,6 +121,20 @@ export declare class ComputeEngine implements IComputeEngine {
|
|
|
129
121
|
get contextStack(): ReadonlyArray<EvalContext>;
|
|
130
122
|
set contextStack(stack: ReadonlyArray<EvalContext>);
|
|
131
123
|
/** @internal */
|
|
124
|
+
get _BIGNUM_NAN(): Decimal;
|
|
125
|
+
/** @internal */
|
|
126
|
+
get _BIGNUM_ZERO(): Decimal;
|
|
127
|
+
/** @internal */
|
|
128
|
+
get _BIGNUM_ONE(): Decimal;
|
|
129
|
+
/** @internal */
|
|
130
|
+
get _BIGNUM_TWO(): Decimal;
|
|
131
|
+
/** @internal */
|
|
132
|
+
get _BIGNUM_HALF(): Decimal;
|
|
133
|
+
/** @internal */
|
|
134
|
+
get _BIGNUM_PI(): Decimal;
|
|
135
|
+
/** @internal */
|
|
136
|
+
get _BIGNUM_NEGATIVE_ONE(): Decimal;
|
|
137
|
+
/** @internal */
|
|
132
138
|
get _typeResolver(): TypeResolver;
|
|
133
139
|
/**
|
|
134
140
|
* Declare a new type in the current scope.
|
|
@@ -136,7 +142,7 @@ export declare class ComputeEngine implements IComputeEngine {
|
|
|
136
142
|
* By default, types are nominal. To declare a structural type, set
|
|
137
143
|
* `alias` to `true`.
|
|
138
144
|
*/
|
|
139
|
-
declareType(name: string, type: BoxedType | Type | TypeString,
|
|
145
|
+
declareType(name: string, type: BoxedType | Type | TypeString, options?: {
|
|
140
146
|
alias?: boolean;
|
|
141
147
|
}): void;
|
|
142
148
|
/**
|
|
@@ -149,7 +155,8 @@ export declare class ComputeEngine implements IComputeEngine {
|
|
|
149
155
|
* It is used to invalidate caches.
|
|
150
156
|
* @internal
|
|
151
157
|
*/
|
|
152
|
-
_generation: number;
|
|
158
|
+
get _generation(): number;
|
|
159
|
+
set _generation(value: number);
|
|
153
160
|
/** In strict mode (the default) the Compute Engine performs
|
|
154
161
|
* validation of domains and signature and may report errors.
|
|
155
162
|
*
|
|
@@ -160,10 +167,6 @@ export declare class ComputeEngine implements IComputeEngine {
|
|
|
160
167
|
*
|
|
161
168
|
*/
|
|
162
169
|
strict: boolean;
|
|
163
|
-
/** Absolute time beyond which evaluation should not proceed.
|
|
164
|
-
* @internal
|
|
165
|
-
*/
|
|
166
|
-
deadline?: number;
|
|
167
170
|
/**
|
|
168
171
|
* Return symbol tables suitable for the specified categories, or `"all"`
|
|
169
172
|
* for all categories (`"arithmetic"`, `"algebra"`, etc...).
|
|
@@ -172,12 +175,8 @@ export declare class ComputeEngine implements IComputeEngine {
|
|
|
172
175
|
*
|
|
173
176
|
*/
|
|
174
177
|
/** @internal */
|
|
175
|
-
private
|
|
176
|
-
|
|
177
|
-
__indexedLatexDictionary: IndexedLatexDictionary;
|
|
178
|
-
/** @internal */
|
|
179
|
-
_bignum: Decimal.Constructor;
|
|
180
|
-
static getStandardLibrary(categories?: LibraryCategory[] | LibraryCategory | 'all'): readonly SymbolDefinitions[];
|
|
178
|
+
private _latexDictionaryState;
|
|
179
|
+
static getStandardLibrary(categories?: LibraryCategory[] | LibraryCategory | 'all'): readonly LibraryDefinition[];
|
|
181
180
|
/**
|
|
182
181
|
* Return a LaTeX dictionary suitable for the specified category, or `"all"`
|
|
183
182
|
* for all categories (`"arithmetic"`, `"algebra"`, etc...).
|
|
@@ -230,9 +229,13 @@ export declare class ComputeEngine implements IComputeEngine {
|
|
|
230
229
|
* @param options.tolerance If the absolute value of the difference of two
|
|
231
230
|
* numbers is less than `tolerance`, they are considered equal. Used by
|
|
232
231
|
* `chop()` as well.
|
|
232
|
+
*
|
|
233
|
+
* @param options.libraries Optional standard/custom library list.
|
|
234
|
+
* Custom library entries are validated during startup (name, dependencies,
|
|
235
|
+
* definitions, and LaTeX dictionary shape).
|
|
233
236
|
*/
|
|
234
237
|
constructor(options?: {
|
|
235
|
-
|
|
238
|
+
libraries?: readonly (string | LibraryDefinition)[];
|
|
236
239
|
precision?: number | 'machine';
|
|
237
240
|
tolerance?: number | 'auto';
|
|
238
241
|
});
|
|
@@ -275,19 +278,40 @@ export declare class ComputeEngine implements IComputeEngine {
|
|
|
275
278
|
*
|
|
276
279
|
* // Use the custom target
|
|
277
280
|
* const expr = ce.parse('x^2 + y^2');
|
|
278
|
-
* const code =
|
|
281
|
+
* const code = compile(expr, { to: 'python' });
|
|
279
282
|
* ```
|
|
283
|
+
*
|
|
284
|
+
* Throws if:
|
|
285
|
+
* - `name` is empty or contains whitespace
|
|
286
|
+
* - `target` does not implement the required `LanguageTarget` methods
|
|
280
287
|
*/
|
|
281
|
-
registerCompilationTarget(name: string, target: LanguageTarget): void;
|
|
288
|
+
registerCompilationTarget(name: string, target: LanguageTarget<Expression>): void;
|
|
282
289
|
/**
|
|
283
290
|
* Get a registered compilation target by name.
|
|
284
291
|
*
|
|
285
|
-
* @param name - The name of the target (e.g., 'javascript', 'glsl')
|
|
292
|
+
* @param name - The name of the target (e.g., 'javascript', 'glsl', 'python')
|
|
286
293
|
* @returns The LanguageTarget implementation, or undefined if not found
|
|
294
|
+
*/
|
|
295
|
+
getCompilationTarget(name: string): LanguageTarget<Expression> | undefined;
|
|
296
|
+
/**
|
|
297
|
+
* Return the names of all registered compilation targets.
|
|
287
298
|
*
|
|
288
|
-
* @
|
|
299
|
+
* @example
|
|
300
|
+
* ```typescript
|
|
301
|
+
* const ce = new ComputeEngine();
|
|
302
|
+
* console.log(ce.listCompilationTargets());
|
|
303
|
+
* // → ['javascript', 'glsl', 'interval-js', 'interval-glsl']
|
|
304
|
+
* ```
|
|
289
305
|
*/
|
|
290
|
-
|
|
306
|
+
listCompilationTargets(): string[];
|
|
307
|
+
/**
|
|
308
|
+
* Remove a registered compilation target.
|
|
309
|
+
*
|
|
310
|
+
* @param name - The name of the target to remove
|
|
311
|
+
*/
|
|
312
|
+
unregisterCompilationTarget(name: string): void;
|
|
313
|
+
/** @internal Compile a boxed expression. */
|
|
314
|
+
_compile(expr: Expression, options?: Parameters<typeof _compile>[1]): ReturnType<typeof _compile>;
|
|
291
315
|
get precision(): number;
|
|
292
316
|
/** The precision, or number of significant digits, of numeric
|
|
293
317
|
* calculations.
|
|
@@ -326,9 +350,14 @@ export declare class ComputeEngine implements IComputeEngine {
|
|
|
326
350
|
*/
|
|
327
351
|
get timeLimit(): number;
|
|
328
352
|
set timeLimit(t: number);
|
|
329
|
-
|
|
353
|
+
/** Absolute time beyond which evaluation should not proceed.
|
|
354
|
+
* @internal
|
|
355
|
+
*/
|
|
356
|
+
get deadline(): number | undefined;
|
|
357
|
+
set deadline(value: number | undefined);
|
|
330
358
|
/** The time after which the time limit has been exceeded */
|
|
331
|
-
_deadline: number | undefined;
|
|
359
|
+
get _deadline(): number | undefined;
|
|
360
|
+
set _deadline(value: number | undefined);
|
|
332
361
|
get _timeRemaining(): number;
|
|
333
362
|
/** Throw `CancellationError` `iteration-limit-exceeded` when the iteration limit
|
|
334
363
|
* in a loop is exceeded. Default: no limits.
|
|
@@ -337,7 +366,6 @@ export declare class ComputeEngine implements IComputeEngine {
|
|
|
337
366
|
*/
|
|
338
367
|
get iterationLimit(): number;
|
|
339
368
|
set iterationLimit(t: number);
|
|
340
|
-
private _iterationLimit;
|
|
341
369
|
/** Signal `recursion-depth-exceeded` when the recursion depth for this
|
|
342
370
|
* scope is exceeded.
|
|
343
371
|
*
|
|
@@ -345,7 +373,6 @@ export declare class ComputeEngine implements IComputeEngine {
|
|
|
345
373
|
*/
|
|
346
374
|
get recursionLimit(): number;
|
|
347
375
|
set recursionLimit(t: number);
|
|
348
|
-
private _recursionLimit;
|
|
349
376
|
/**
|
|
350
377
|
* Flag to prevent infinite recursion in the verify/ask/equality checking cycle.
|
|
351
378
|
*
|
|
@@ -368,7 +395,9 @@ export declare class ComputeEngine implements IComputeEngine {
|
|
|
368
395
|
* @see eq() in compare.ts
|
|
369
396
|
* @see Equal/NotEqual operators in relational-operator.ts
|
|
370
397
|
*/
|
|
371
|
-
|
|
398
|
+
/** @internal */
|
|
399
|
+
get _isVerifying(): boolean;
|
|
400
|
+
set _isVerifying(value: boolean);
|
|
372
401
|
/**
|
|
373
402
|
* @internal
|
|
374
403
|
* Indicates whether we're currently inside a verify() call.
|
|
@@ -436,9 +465,9 @@ export declare class ComputeEngine implements IComputeEngine {
|
|
|
436
465
|
* - `isNegative()`
|
|
437
466
|
* - `isPositive()`
|
|
438
467
|
* - `isZero()`
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
468
|
+
* - `sign()` (1, 0 or -1)
|
|
469
|
+
*
|
|
470
|
+
*/
|
|
442
471
|
bignum(a: Decimal.Value | bigint): Decimal;
|
|
443
472
|
/** Create a complex number.
|
|
444
473
|
* The return value is an object with methods to perform arithmetic
|
|
@@ -496,8 +525,27 @@ export declare class ComputeEngine implements IComputeEngine {
|
|
|
496
525
|
/**
|
|
497
526
|
* The cost function is used to determine the "cost" of an expression. For example, when simplifying an expression, the simplification that results in the lowest cost is chosen.
|
|
498
527
|
*/
|
|
499
|
-
get costFunction(): (expr:
|
|
500
|
-
set costFunction(fn: ((expr:
|
|
528
|
+
get costFunction(): (expr: Expression) => number;
|
|
529
|
+
set costFunction(fn: ((expr: Expression) => number) | undefined);
|
|
530
|
+
/**
|
|
531
|
+
* The rules used by `.simplify()` when no explicit `rules` option is passed.
|
|
532
|
+
* Initialized to a copy of the built-in simplification rules.
|
|
533
|
+
*
|
|
534
|
+
* Add custom rules with `push()`:
|
|
535
|
+
* ```ts
|
|
536
|
+
* ce.simplificationRules.push({
|
|
537
|
+
* match: ['Power', ['Sin', '_x'], 2],
|
|
538
|
+
* replace: ['Subtract', 1, ['Power', ['Cos', '_x'], 2]],
|
|
539
|
+
* });
|
|
540
|
+
* ```
|
|
541
|
+
*
|
|
542
|
+
* Or replace entirely:
|
|
543
|
+
* ```ts
|
|
544
|
+
* ce.simplificationRules = myCustomRules;
|
|
545
|
+
* ```
|
|
546
|
+
*/
|
|
547
|
+
get simplificationRules(): Rule[];
|
|
548
|
+
set simplificationRules(rules: Rule[]);
|
|
501
549
|
/**
|
|
502
550
|
* Return definition matching the symbol, starting with the current
|
|
503
551
|
* lexical scope and going up the scope chain.
|
|
@@ -544,19 +592,19 @@ export declare class ComputeEngine implements IComputeEngine {
|
|
|
544
592
|
/**
|
|
545
593
|
* Use `ce.box(name)` instead
|
|
546
594
|
* @internal */
|
|
547
|
-
_getSymbolValue(id: MathJsonSymbol):
|
|
595
|
+
_getSymbolValue(id: MathJsonSymbol): Expression | undefined;
|
|
548
596
|
/**
|
|
549
597
|
* For internal use. Use `ce.assign(name, value)` instead.
|
|
550
598
|
* @internal
|
|
551
599
|
*/
|
|
552
|
-
_setSymbolValue(id: MathJsonSymbol, value:
|
|
600
|
+
_setSymbolValue(id: MathJsonSymbol, value: Expression | boolean | number | undefined): void;
|
|
553
601
|
/**
|
|
554
602
|
* Set a value directly in the current context's values map.
|
|
555
603
|
* This is used for assumptions so that the value is scoped to the current
|
|
556
604
|
* evaluation context and is automatically removed when the scope is popped.
|
|
557
605
|
* @internal
|
|
558
606
|
*/
|
|
559
|
-
_setCurrentContextValue(id: MathJsonSymbol, value:
|
|
607
|
+
_setCurrentContextValue(id: MathJsonSymbol, value: Expression | boolean | number | undefined): void;
|
|
560
608
|
/**
|
|
561
609
|
* Declare a symbol in the current lexical scope: specify their type and
|
|
562
610
|
* other attributes, including optionally a value.
|
|
@@ -625,7 +673,7 @@ export declare class ComputeEngine implements IComputeEngine {
|
|
|
625
673
|
* For single-index sequences, keys are numbers.
|
|
626
674
|
* For multi-index sequences, keys are comma-separated strings (e.g., '5,2').
|
|
627
675
|
*/
|
|
628
|
-
getSequenceCache(name: string): Map<number | string,
|
|
676
|
+
getSequenceCache(name: string): Map<number | string, Expression> | undefined;
|
|
629
677
|
/**
|
|
630
678
|
* Generate a list of sequence terms from start to end (inclusive).
|
|
631
679
|
*
|
|
@@ -642,7 +690,7 @@ export declare class ComputeEngine implements IComputeEngine {
|
|
|
642
690
|
* // → [0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55]
|
|
643
691
|
* ```
|
|
644
692
|
*/
|
|
645
|
-
getSequenceTerms(name: string, start: number, end: number, step?: number):
|
|
693
|
+
getSequenceTerms(name: string, start: number, end: number, step?: number): Expression[] | undefined;
|
|
646
694
|
/**
|
|
647
695
|
* Look up sequences in OEIS by their terms.
|
|
648
696
|
*
|
|
@@ -656,7 +704,7 @@ export declare class ComputeEngine implements IComputeEngine {
|
|
|
656
704
|
* // → [{ id: 'A000045', name: 'Fibonacci numbers', ... }]
|
|
657
705
|
* ```
|
|
658
706
|
*/
|
|
659
|
-
lookupOEIS(terms: (number |
|
|
707
|
+
lookupOEIS(terms: (number | Expression)[], options?: OEISOptions): Promise<OEISSequenceInfo[]>;
|
|
660
708
|
/**
|
|
661
709
|
* Check if a defined sequence matches an OEIS sequence.
|
|
662
710
|
*
|
|
@@ -716,45 +764,43 @@ export declare class ComputeEngine implements IComputeEngine {
|
|
|
716
764
|
_checkContinueExecution(): void;
|
|
717
765
|
/** @internal */
|
|
718
766
|
_cache<T>(cacheName: string, build: () => T, purge?: (t: T) => T | undefined): T;
|
|
719
|
-
/** Return a boxed expression from a number, string or
|
|
767
|
+
/** Return a boxed expression from a number, string or expression input.
|
|
720
768
|
* Calls `ce.function()`, `ce.number()` or `ce.symbol()` as appropriate.
|
|
721
769
|
*/
|
|
722
|
-
box(expr: NumericValue |
|
|
723
|
-
|
|
724
|
-
structural?: boolean;
|
|
770
|
+
box(expr: NumericValue | ExpressionInput, options?: {
|
|
771
|
+
form?: FormOption;
|
|
725
772
|
scope?: Scope | undefined;
|
|
726
|
-
}):
|
|
727
|
-
function(name: string, ops: ReadonlyArray<
|
|
773
|
+
}): Expression;
|
|
774
|
+
function(name: string, ops: ReadonlyArray<Expression> | ReadonlyArray<MathJsonExpression>, options?: {
|
|
728
775
|
metadata?: Metadata;
|
|
729
|
-
|
|
730
|
-
structural?: boolean;
|
|
776
|
+
form?: FormOption;
|
|
731
777
|
scope?: Scope | undefined;
|
|
732
|
-
}):
|
|
778
|
+
}): Expression;
|
|
733
779
|
/**
|
|
734
780
|
*
|
|
735
781
|
* Shortcut for `this.box(["Error",...])`.
|
|
736
782
|
*
|
|
737
783
|
* The result is canonical.
|
|
738
784
|
*/
|
|
739
|
-
error(message: string | string[], where?: string):
|
|
740
|
-
typeError(expected: Type, actual: undefined | Type | BoxedType, where?: string):
|
|
785
|
+
error(message: string | string[], where?: string): Expression;
|
|
786
|
+
typeError(expected: Type, actual: undefined | Type | BoxedType, where?: string): Expression;
|
|
741
787
|
/**
|
|
742
788
|
* Add a `["Hold"]` wrapper to `expr`.
|
|
743
789
|
*/
|
|
744
|
-
hold(expr:
|
|
790
|
+
hold(expr: ExpressionInput): Expression;
|
|
745
791
|
/** Shortcut for `this.box(["Tuple", ...])`
|
|
746
792
|
*
|
|
747
793
|
* The result is canonical.
|
|
748
794
|
*/
|
|
749
|
-
tuple(...elements: ReadonlyArray<number>):
|
|
750
|
-
tuple(...elements: ReadonlyArray<
|
|
795
|
+
tuple(...elements: ReadonlyArray<number>): Expression;
|
|
796
|
+
tuple(...elements: ReadonlyArray<Expression>): Expression;
|
|
751
797
|
type(type: Type | TypeString | BoxedType): BoxedType;
|
|
752
|
-
string(s: string, metadata?: Metadata):
|
|
798
|
+
string(s: string, metadata?: Metadata): Expression;
|
|
753
799
|
/** Create a boxed symbol */
|
|
754
800
|
symbol(name: string, options?: {
|
|
755
801
|
canonical?: CanonicalOptions;
|
|
756
802
|
metadata?: Metadata;
|
|
757
|
-
}):
|
|
803
|
+
}): Expression;
|
|
758
804
|
/**
|
|
759
805
|
* This function tries to avoid creating a boxed number if `num` corresponds
|
|
760
806
|
* to a common value for which we have a shared instance (-1, 0, NaN, etc...)
|
|
@@ -762,7 +808,7 @@ export declare class ComputeEngine implements IComputeEngine {
|
|
|
762
808
|
number(value: number | bigint | string | NumericValue | MathJsonNumberObject | Decimal | Complex | Rational, options?: {
|
|
763
809
|
metadata: Metadata;
|
|
764
810
|
canonical: CanonicalOptions;
|
|
765
|
-
}):
|
|
811
|
+
}): Expression;
|
|
766
812
|
rules(rules: Rule | ReadonlyArray<Rule | BoxedRule> | BoxedRuleSet | undefined | null, options?: {
|
|
767
813
|
canonical?: boolean;
|
|
768
814
|
}): BoxedRuleSet;
|
|
@@ -786,23 +832,20 @@ export declare class ComputeEngine implements IComputeEngine {
|
|
|
786
832
|
* canonical form
|
|
787
833
|
*
|
|
788
834
|
* @internal */
|
|
789
|
-
_fn(name: MathJsonSymbol, ops: ReadonlyArray<
|
|
835
|
+
_fn(name: MathJsonSymbol, ops: ReadonlyArray<Expression>, options?: {
|
|
790
836
|
metadata?: Metadata;
|
|
791
837
|
canonical?: boolean;
|
|
792
838
|
scope?: Scope;
|
|
793
|
-
}):
|
|
839
|
+
}): Expression;
|
|
794
840
|
/**
|
|
795
|
-
* Parse a string of LaTeX and return a corresponding `
|
|
841
|
+
* Parse a string of LaTeX and return a corresponding `Expression`.
|
|
796
842
|
*
|
|
797
|
-
* If the `
|
|
843
|
+
* If the `form` option is set to `'canonical'` (the default), the result
|
|
844
|
+
* will be canonical.
|
|
798
845
|
*
|
|
799
846
|
*/
|
|
800
|
-
parse(latex: null, options?:
|
|
801
|
-
|
|
802
|
-
}): null;
|
|
803
|
-
parse(latex: LatexString, options?: Partial<ParseLatexOptions> & {
|
|
804
|
-
canonical?: CanonicalOptions;
|
|
805
|
-
}): BoxedExpression;
|
|
847
|
+
parse(latex: null, options?: ParseEntrypointOptions): null;
|
|
848
|
+
parse(latex: LatexString, options?: ParseEntrypointOptions): Expression;
|
|
806
849
|
/**
|
|
807
850
|
* Return a list of all the assumptions that match a pattern.
|
|
808
851
|
*
|
|
@@ -812,12 +855,12 @@ export declare class ComputeEngine implements IComputeEngine {
|
|
|
812
855
|
* // -> [{'val': 0}]
|
|
813
856
|
* ```
|
|
814
857
|
*/
|
|
815
|
-
ask(pattern:
|
|
858
|
+
ask(pattern: Expression): BoxedSubstitution[];
|
|
816
859
|
/**
|
|
817
860
|
* Answer a query based on the current assumptions.
|
|
818
861
|
*
|
|
819
862
|
*/
|
|
820
|
-
verify(query:
|
|
863
|
+
verify(query: Expression): boolean | undefined;
|
|
821
864
|
/**
|
|
822
865
|
* Add an assumption.
|
|
823
866
|
*
|
|
@@ -831,7 +874,7 @@ export declare class ComputeEngine implements IComputeEngine {
|
|
|
831
874
|
*
|
|
832
875
|
*
|
|
833
876
|
*/
|
|
834
|
-
assume(predicate:
|
|
877
|
+
assume(predicate: Expression): AssumeResult;
|
|
835
878
|
/**
|
|
836
879
|
* Remove all assumptions about one or more symbols.
|
|
837
880
|
*
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
/* 0.
|
|
1
|
+
/* 0.50.0 */
|
|
2
2
|
export declare const DEFINITIONS_ALGEBRA: LatexDictionary;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
/* 0.
|
|
1
|
+
/* 0.50.0 */
|
|
2
2
|
export declare const DEFINITIONS_ARITHMETIC: LatexDictionary;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
/* 0.
|
|
1
|
+
/* 0.50.0 */
|
|
2
2
|
export declare const DEFINITIONS_CALCULUS: LatexDictionary;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
/* 0.
|
|
1
|
+
/* 0.50.0 */
|
|
2
2
|
export declare const DEFINITIONS_COMPLEX: LatexDictionary;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
/* 0.
|
|
1
|
+
/* 0.50.0 */
|
|
2
2
|
export declare const DEFINITIONS_LINEAR_ALGEBRA: LatexDictionary;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
/* 0.
|
|
1
|
+
/* 0.50.0 */
|
|
2
2
|
export declare const DEFINITIONS_LOGIC: LatexDictionary;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
/* 0.
|
|
1
|
+
/* 0.50.0 */
|
|
2
2
|
export declare const DEFINITIONS_OTHERS: LatexDictionary;
|
package/dist/types/compute-engine/latex-syntax/dictionary/definitions-relational-operators.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
/* 0.
|
|
1
|
+
/* 0.50.0 */
|
|
2
2
|
export declare const DEFINITIONS_INEQUALITIES: LatexDictionaryEntry[];
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
/* 0.
|
|
1
|
+
/* 0.50.0 */
|
|
2
2
|
export declare const DEFINITIONS_SETS: LatexDictionary;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
/* 0.
|
|
1
|
+
/* 0.50.0 */
|
|
2
2
|
export declare const DEFINITIONS_STATISTICS: LatexDictionary;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
/* 0.
|
|
1
|
+
/* 0.50.0 */
|
|
2
2
|
export declare const DEFINITIONS_TRIGONOMETRY: LatexDictionary;
|