@cortex-js/compute-engine 0.32.0 → 0.32.1
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/dist/compute-engine.esm.js +42905 -0
- package/dist/compute-engine.min.esm.js +125 -0
- package/dist/compute-engine.min.umd.js +127 -0
- package/dist/compute-engine.umd.js +42930 -0
- package/dist/math-json.esm.js +130 -0
- package/dist/math-json.min.esm.js +130 -0
- package/dist/math-json.min.umd.js +4 -0
- package/dist/math-json.umd.js +155 -0
- package/dist/types/common/ansi-codes.d.ts +41 -0
- package/dist/types/common/configuration-change.d.ts +28 -0
- package/dist/types/common/fuzzy-string-match.d.ts +2 -0
- package/dist/types/common/grapheme-splitter.d.ts +15 -0
- package/dist/types/common/interruptible.d.ts +20 -0
- package/dist/types/common/one-of.d.ts +10 -0
- package/dist/types/common/signals.d.ts +96 -0
- package/dist/types/common/type/ast-nodes.d.ts +146 -0
- package/dist/types/common/type/boxed-type.d.ts +30 -0
- package/dist/types/common/type/lexer.d.ts +51 -0
- package/dist/types/common/type/parse.d.ts +211 -0
- package/dist/types/common/type/parser.d.ts +45 -0
- package/dist/types/common/type/primitive.d.ts +10 -0
- package/dist/types/common/type/serialize.d.ts +2 -0
- package/dist/types/common/type/subtype.d.ts +6 -0
- package/dist/types/common/type/type-builder.d.ts +32 -0
- package/dist/types/common/type/types.d.ts +300 -0
- package/dist/types/common/type/utils.d.ts +36 -0
- package/dist/types/common/utils.d.ts +23 -0
- package/dist/types/compute-engine/assume.d.ts +26 -0
- package/dist/types/compute-engine/boxed-expression/abstract-boxed-expression.d.ts +165 -0
- package/dist/types/compute-engine/boxed-expression/apply.d.ts +5 -0
- package/dist/types/compute-engine/boxed-expression/arithmetic-add.d.ts +16 -0
- package/dist/types/compute-engine/boxed-expression/arithmetic-mul-div.d.ts +27 -0
- package/dist/types/compute-engine/boxed-expression/arithmetic-power.d.ts +38 -0
- package/dist/types/compute-engine/boxed-expression/ascii-math.d.ts +11 -0
- package/dist/types/compute-engine/boxed-expression/box.d.ts +47 -0
- package/dist/types/compute-engine/boxed-expression/boxed-dictionary.d.ts +44 -0
- package/dist/types/compute-engine/boxed-expression/boxed-function.d.ts +136 -0
- package/dist/types/compute-engine/boxed-expression/boxed-number.d.ts +103 -0
- package/dist/types/compute-engine/boxed-expression/boxed-operator-definition.d.ts +53 -0
- package/dist/types/compute-engine/boxed-expression/boxed-patterns.d.ts +107 -0
- package/dist/types/compute-engine/boxed-expression/boxed-string.d.ts +27 -0
- package/dist/types/compute-engine/boxed-expression/boxed-symbol.d.ts +170 -0
- package/dist/types/compute-engine/boxed-expression/boxed-tensor.d.ts +83 -0
- package/dist/types/compute-engine/boxed-expression/boxed-value-definition.d.ts +46 -0
- package/dist/types/compute-engine/boxed-expression/cache.d.ts +7 -0
- package/dist/types/compute-engine/boxed-expression/canonical-utils.d.ts +5 -0
- package/dist/types/compute-engine/boxed-expression/canonical.d.ts +2 -0
- package/dist/types/compute-engine/boxed-expression/compare.d.ts +13 -0
- package/dist/types/compute-engine/boxed-expression/expand.d.ts +20 -0
- package/dist/types/compute-engine/boxed-expression/expression-map.d.ts +12 -0
- package/dist/types/compute-engine/boxed-expression/factor.d.ts +10 -0
- package/dist/types/compute-engine/boxed-expression/flatten.d.ts +25 -0
- package/dist/types/compute-engine/boxed-expression/hold.d.ts +10 -0
- package/dist/types/compute-engine/boxed-expression/match.d.ts +41 -0
- package/dist/types/compute-engine/boxed-expression/negate.d.ts +11 -0
- package/dist/types/compute-engine/boxed-expression/numerics.d.ts +34 -0
- package/dist/types/compute-engine/boxed-expression/order.d.ts +71 -0
- package/dist/types/compute-engine/boxed-expression/polynomials.d.ts +105 -0
- package/dist/types/compute-engine/boxed-expression/product.d.ts +66 -0
- package/dist/types/compute-engine/boxed-expression/rules.d.ts +129 -0
- package/dist/types/compute-engine/boxed-expression/serialize.d.ts +3 -0
- package/dist/types/compute-engine/boxed-expression/sgn.d.ts +46 -0
- package/dist/types/compute-engine/boxed-expression/simplify.d.ts +6 -0
- package/dist/types/compute-engine/boxed-expression/solve.d.ts +20 -0
- package/dist/types/compute-engine/boxed-expression/terms.d.ts +10 -0
- package/dist/types/compute-engine/boxed-expression/trigonometry.d.ts +9 -0
- package/dist/types/compute-engine/boxed-expression/utils.d.ts +64 -0
- package/dist/types/compute-engine/boxed-expression/validate.d.ts +58 -0
- package/dist/types/compute-engine/collection-utils.d.ts +35 -0
- package/dist/types/compute-engine/compilation/base-compiler.d.ts +31 -0
- package/dist/types/compute-engine/compilation/javascript-target.d.ts +68 -0
- package/dist/types/compute-engine/compilation/types.d.ts +83 -0
- package/dist/types/compute-engine/cost-function.d.ts +13 -0
- package/dist/types/compute-engine/function-utils.d.ts +120 -0
- package/dist/types/compute-engine/global-types.d.ts +2930 -0
- package/dist/types/compute-engine/index.d.ts +660 -0
- package/dist/types/compute-engine/latex-syntax/dictionary/definitions-algebra.d.ts +2 -0
- package/dist/types/compute-engine/latex-syntax/dictionary/definitions-arithmetic.d.ts +2 -0
- package/dist/types/compute-engine/latex-syntax/dictionary/definitions-calculus.d.ts +2 -0
- package/dist/types/compute-engine/latex-syntax/dictionary/definitions-complex.d.ts +2 -0
- package/dist/types/compute-engine/latex-syntax/dictionary/definitions-core.d.ts +27 -0
- package/dist/types/compute-engine/latex-syntax/dictionary/definitions-linear-algebra.d.ts +2 -0
- package/dist/types/compute-engine/latex-syntax/dictionary/definitions-logic.d.ts +2 -0
- package/dist/types/compute-engine/latex-syntax/dictionary/definitions-other.d.ts +2 -0
- package/dist/types/compute-engine/latex-syntax/dictionary/definitions-relational-operators.d.ts +2 -0
- package/dist/types/compute-engine/latex-syntax/dictionary/definitions-sets.d.ts +2 -0
- package/dist/types/compute-engine/latex-syntax/dictionary/definitions-statistics.d.ts +2 -0
- package/dist/types/compute-engine/latex-syntax/dictionary/definitions-symbols.d.ts +3 -0
- package/dist/types/compute-engine/latex-syntax/dictionary/definitions-trigonometry.d.ts +2 -0
- package/dist/types/compute-engine/latex-syntax/dictionary/definitions.d.ts +88 -0
- package/dist/types/compute-engine/latex-syntax/parse-symbol.d.ts +21 -0
- package/dist/types/compute-engine/latex-syntax/parse.d.ts +316 -0
- package/dist/types/compute-engine/latex-syntax/serialize-number.d.ts +29 -0
- package/dist/types/compute-engine/latex-syntax/serializer-style.d.ts +10 -0
- package/dist/types/compute-engine/latex-syntax/serializer.d.ts +37 -0
- package/dist/types/compute-engine/latex-syntax/tokenizer.d.ts +18 -0
- package/dist/types/compute-engine/latex-syntax/types.d.ts +896 -0
- package/dist/types/compute-engine/latex-syntax/utils.d.ts +5 -0
- package/dist/types/compute-engine/library/arithmetic.d.ts +4 -0
- package/dist/types/compute-engine/library/calculus.d.ts +2 -0
- package/dist/types/compute-engine/library/collections.d.ts +27 -0
- package/dist/types/compute-engine/library/combinatorics.d.ts +2 -0
- package/dist/types/compute-engine/library/complex.d.ts +2 -0
- package/dist/types/compute-engine/library/control-structures.d.ts +2 -0
- package/dist/types/compute-engine/library/core.d.ts +2 -0
- package/dist/types/compute-engine/library/invisible-operator.d.ts +4 -0
- package/dist/types/compute-engine/library/library.d.ts +17 -0
- package/dist/types/compute-engine/library/linear-algebra.d.ts +2 -0
- package/dist/types/compute-engine/library/logic-analysis.d.ts +64 -0
- package/dist/types/compute-engine/library/logic-utils.d.ts +58 -0
- package/dist/types/compute-engine/library/logic.d.ts +7 -0
- package/dist/types/compute-engine/library/number-theory.d.ts +2 -0
- package/dist/types/compute-engine/library/polynomials.d.ts +2 -0
- package/dist/types/compute-engine/library/random-expression.d.ts +2 -0
- package/dist/types/compute-engine/library/relational-operator.d.ts +2 -0
- package/dist/types/compute-engine/library/sets.d.ts +2 -0
- package/dist/types/compute-engine/library/statistics.d.ts +2 -0
- package/dist/types/compute-engine/library/trigonometry.d.ts +2 -0
- package/dist/types/compute-engine/library/utils.d.ts +77 -0
- package/dist/types/compute-engine/numeric-value/big-numeric-value.d.ts +57 -0
- package/dist/types/compute-engine/numeric-value/exact-numeric-value.d.ts +75 -0
- package/dist/types/compute-engine/numeric-value/machine-numeric-value.d.ts +56 -0
- package/dist/types/compute-engine/numeric-value/types.d.ts +116 -0
- package/dist/types/compute-engine/numerics/bigint.d.ts +2 -0
- package/dist/types/compute-engine/numerics/expression.d.ts +4 -0
- package/dist/types/compute-engine/numerics/interval.d.ts +12 -0
- package/dist/types/compute-engine/numerics/monte-carlo.d.ts +4 -0
- package/dist/types/compute-engine/numerics/numeric-bigint.d.ts +18 -0
- package/dist/types/compute-engine/numerics/numeric-bignum.d.ts +9 -0
- package/dist/types/compute-engine/numerics/numeric-complex.d.ts +3 -0
- package/dist/types/compute-engine/numerics/numeric.d.ts +60 -0
- package/dist/types/compute-engine/numerics/primes.d.ts +7 -0
- package/dist/types/compute-engine/numerics/rationals.d.ts +43 -0
- package/dist/types/compute-engine/numerics/richardson.d.ts +80 -0
- package/dist/types/compute-engine/numerics/special-functions.d.ts +28 -0
- package/dist/types/compute-engine/numerics/statistics.d.ts +24 -0
- package/dist/types/compute-engine/numerics/strings.d.ts +2 -0
- package/dist/types/compute-engine/numerics/types.d.ts +30 -0
- package/dist/types/compute-engine/symbolic/antiderivative.d.ts +3 -0
- package/dist/types/compute-engine/symbolic/derivative.d.ts +18 -0
- package/dist/types/compute-engine/symbolic/distribute.d.ts +5 -0
- package/dist/types/compute-engine/symbolic/simplify-product.d.ts +6 -0
- package/dist/types/compute-engine/symbolic/simplify-rules.d.ts +27 -0
- package/dist/types/compute-engine/symbolic/simplify-sum.d.ts +6 -0
- package/dist/types/compute-engine/tensor/tensor-fields.d.ts +128 -0
- package/dist/types/compute-engine/tensor/tensors.d.ts +93 -0
- package/dist/types/compute-engine/types.d.ts +8 -0
- package/dist/types/compute-engine.d.ts +3 -0
- package/dist/types/math-json/symbols.d.ts +11 -0
- package/dist/types/math-json/types.d.ts +122 -0
- package/dist/types/math-json/utils.d.ts +87 -0
- package/dist/types/math-json.d.ts +3 -0
- package/package.json +1 -1
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/* 0.32.1 */
|
|
2
|
+
export declare function asLatexString(s: unknown): string | null;
|
|
3
|
+
export declare function isRelationalOperator(name: string | undefined): boolean;
|
|
4
|
+
export declare function isInequalityOperator(operator: string | undefined): boolean;
|
|
5
|
+
export declare function isEquationOperator(operator: string | undefined): boolean;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
/* 0.32.1 */
|
|
2
|
+
export type CanonicalArithmeticOperators = 'Add' | 'Negate' | 'Multiply' | 'Divide' | 'Power' | 'Sqrt' | 'Root' | 'Ln';
|
|
3
|
+
export declare const ARITHMETIC_LIBRARY: SymbolDefinitions[];
|
|
4
|
+
export declare function isPrime(expr: BoxedExpression): boolean | undefined;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/* 0.32.1 */
|
|
2
|
+
export declare const DEFAULT_LINSPACE_COUNT = 50;
|
|
3
|
+
export declare const COLLECTIONS_LIBRARY: SymbolDefinitions;
|
|
4
|
+
/**
|
|
5
|
+
* Normalize the arguments of range:
|
|
6
|
+
* - [from, to] -> [from, to, 1] if to > from, or [from, to, -1] if to < from
|
|
7
|
+
* - [x] -> [1, x]
|
|
8
|
+
* - arguments rounded to integers
|
|
9
|
+
*
|
|
10
|
+
*/
|
|
11
|
+
export declare function range(expr: BoxedExpression): [lower: number, upper: number, step: number];
|
|
12
|
+
/** Return the last value in the range
|
|
13
|
+
* - could be less that lower if step is negative
|
|
14
|
+
* - could be less than upper if step is positive, for
|
|
15
|
+
* example `rangeLast([1, 6, 2])` = 5
|
|
16
|
+
*/
|
|
17
|
+
export declare function rangeLast(r: [lower: number, upper: number, step: number]): number;
|
|
18
|
+
/**
|
|
19
|
+
* This function is used to reduce a collection of expressions to a single value. It
|
|
20
|
+
* iterates over the collection, applying the given function to each element and the
|
|
21
|
+
* accumulator. If the function returns `null`, the iteration is stopped and `undefined`
|
|
22
|
+
* is returned. Otherwise, the result of the function is used as the new accumulator.
|
|
23
|
+
* If the iteration completes, the final accumulator is returned.
|
|
24
|
+
*/
|
|
25
|
+
export declare function reduceCollection<T>(collection: BoxedExpression, fn: (acc: T, next: BoxedExpression) => T | null, initial: T): Generator<T | undefined>;
|
|
26
|
+
export declare function fromRange(start: number, end: number): number[];
|
|
27
|
+
export declare function sortedIndices(expr: BoxedExpression, fn?: BoxedExpression | undefined): number[] | undefined;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/* 0.32.1 */
|
|
2
|
+
import type { SymbolDefinitions, ComputeEngine } from '../global-types';
|
|
3
|
+
export declare function getStandardLibrary(categories: LibraryCategory[] | LibraryCategory | 'all'): readonly SymbolDefinitions[];
|
|
4
|
+
export declare const LIBRARIES: {
|
|
5
|
+
[category in LibraryCategory]?: SymbolDefinitions | SymbolDefinitions[];
|
|
6
|
+
};
|
|
7
|
+
/**
|
|
8
|
+
* Set the symbol table of the current context (`engine.context`) to `table`
|
|
9
|
+
*
|
|
10
|
+
* `table` can be an array of symbol tables, in order to deal with circular
|
|
11
|
+
* dependencies: it is possible to partition a library into multiple
|
|
12
|
+
* symbol tables, to control the order in which they are processed and
|
|
13
|
+
* avoid having expressions in the definition of an entry reference a symbol
|
|
14
|
+
* or function name that has not yet been added to the symbol table.
|
|
15
|
+
*
|
|
16
|
+
*/
|
|
17
|
+
export declare function setSymbolDefinitions(engine: ComputeEngine, table: SymbolDefinitions): void;
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/* 0.32.1 */
|
|
2
|
+
/**
|
|
3
|
+
* Quantifier domain helpers and boolean analysis functions.
|
|
4
|
+
* Extracted from logic.ts for better code organization.
|
|
5
|
+
*/
|
|
6
|
+
/**
|
|
7
|
+
* Extract the finite domain from a quantifier's condition.
|
|
8
|
+
* Supports:
|
|
9
|
+
* - ["Element", "x", ["Set", 1, 2, 3]] → [1, 2, 3]
|
|
10
|
+
* - ["Element", "x", ["Range", 1, 5]] → [1, 2, 3, 4, 5]
|
|
11
|
+
* - ["Element", "x", ["Interval", 1, 5]] → [1, 2, 3, 4, 5] (integers only)
|
|
12
|
+
* Returns null if the domain is not finite or not recognized.
|
|
13
|
+
*/
|
|
14
|
+
export declare function extractFiniteDomain(condition: BoxedExpression, ce: ComputeEngine): {
|
|
15
|
+
variable: string;
|
|
16
|
+
values: BoxedExpression[];
|
|
17
|
+
} | null;
|
|
18
|
+
/**
|
|
19
|
+
* Check if an expression contains a reference to a specific variable.
|
|
20
|
+
*/
|
|
21
|
+
export declare function bodyContainsVariable(expr: BoxedExpression, variable: string): boolean;
|
|
22
|
+
/**
|
|
23
|
+
* For nested quantifiers like ∀x∈S. ∀y∈T. P(x,y), collect the inner domains.
|
|
24
|
+
* Returns an array of {variable, values} for nested ForAll/Exists with finite domains.
|
|
25
|
+
*/
|
|
26
|
+
export declare function collectNestedDomains(body: BoxedExpression, ce: ComputeEngine): {
|
|
27
|
+
variable: string;
|
|
28
|
+
values: BoxedExpression[];
|
|
29
|
+
}[];
|
|
30
|
+
/**
|
|
31
|
+
* Get the innermost body of nested quantifiers.
|
|
32
|
+
*/
|
|
33
|
+
export declare function getInnermostBody(body: BoxedExpression): BoxedExpression;
|
|
34
|
+
/**
|
|
35
|
+
* Evaluate ForAll over a Cartesian product of domains.
|
|
36
|
+
* Returns True if the predicate holds for all combinations.
|
|
37
|
+
*/
|
|
38
|
+
export declare function evaluateForAllCartesian(domains: {
|
|
39
|
+
variable: string;
|
|
40
|
+
values: BoxedExpression[];
|
|
41
|
+
}[], body: BoxedExpression, ce: ComputeEngine): BoxedExpression | undefined;
|
|
42
|
+
/**
|
|
43
|
+
* Evaluate Exists over a Cartesian product of domains.
|
|
44
|
+
* Returns True if the predicate holds for at least one combination.
|
|
45
|
+
*/
|
|
46
|
+
export declare function evaluateExistsCartesian(domains: {
|
|
47
|
+
variable: string;
|
|
48
|
+
values: BoxedExpression[];
|
|
49
|
+
}[], body: BoxedExpression, ce: ComputeEngine): BoxedExpression | undefined;
|
|
50
|
+
/**
|
|
51
|
+
* Check if a boolean expression is satisfiable.
|
|
52
|
+
* Returns True if there exists an assignment that makes the expression true.
|
|
53
|
+
*/
|
|
54
|
+
export declare function isSatisfiable(expr: BoxedExpression, ce: ComputeEngine): BoxedExpression;
|
|
55
|
+
/**
|
|
56
|
+
* Check if a boolean expression is a tautology.
|
|
57
|
+
* Returns True if the expression is true for all possible assignments.
|
|
58
|
+
*/
|
|
59
|
+
export declare function isTautology(expr: BoxedExpression, ce: ComputeEngine): BoxedExpression;
|
|
60
|
+
/**
|
|
61
|
+
* Generate a truth table for a boolean expression.
|
|
62
|
+
* Returns a List of Lists with headers and rows.
|
|
63
|
+
*/
|
|
64
|
+
export declare function generateTruthTable(expr: BoxedExpression, ce: ComputeEngine): BoxedExpression;
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/* 0.32.1 */
|
|
2
|
+
/**
|
|
3
|
+
* Basic evaluation functions for logical operators.
|
|
4
|
+
* Extracted from logic.ts for better code organization.
|
|
5
|
+
*/
|
|
6
|
+
export declare function evaluateAnd(args: ReadonlyArray<BoxedExpression>, { engine: ce }: {
|
|
7
|
+
engine: ComputeEngine;
|
|
8
|
+
}): BoxedExpression | undefined;
|
|
9
|
+
export declare function evaluateOr(args: ReadonlyArray<BoxedExpression>, { engine: ce }: {
|
|
10
|
+
engine: ComputeEngine;
|
|
11
|
+
}): BoxedExpression | undefined;
|
|
12
|
+
export declare function evaluateNot(args: ReadonlyArray<BoxedExpression>, { engine: ce }: {
|
|
13
|
+
engine: ComputeEngine;
|
|
14
|
+
}): BoxedExpression | undefined;
|
|
15
|
+
export declare function evaluateEquivalent(args: ReadonlyArray<BoxedExpression>, { engine: ce }: {
|
|
16
|
+
engine: ComputeEngine;
|
|
17
|
+
}): BoxedExpression | undefined;
|
|
18
|
+
export declare function evaluateImplies(args: ReadonlyArray<BoxedExpression>, { engine: ce }: {
|
|
19
|
+
engine: ComputeEngine;
|
|
20
|
+
}): BoxedExpression | undefined;
|
|
21
|
+
export declare function evaluateXor(args: ReadonlyArray<BoxedExpression>, { engine: ce }: {
|
|
22
|
+
engine: ComputeEngine;
|
|
23
|
+
}): BoxedExpression | undefined;
|
|
24
|
+
export declare function evaluateNand(args: ReadonlyArray<BoxedExpression>, { engine: ce }: {
|
|
25
|
+
engine: ComputeEngine;
|
|
26
|
+
}): BoxedExpression | undefined;
|
|
27
|
+
export declare function evaluateNor(args: ReadonlyArray<BoxedExpression>, { engine: ce }: {
|
|
28
|
+
engine: ComputeEngine;
|
|
29
|
+
}): BoxedExpression | undefined;
|
|
30
|
+
/**
|
|
31
|
+
* Convert a boolean expression to Negation Normal Form (NNF).
|
|
32
|
+
* In NNF, negations only appear directly before variables (literals).
|
|
33
|
+
* This is a prerequisite for CNF/DNF conversion.
|
|
34
|
+
*/
|
|
35
|
+
export declare function toNNF(expr: BoxedExpression, ce: ComputeEngine): BoxedExpression;
|
|
36
|
+
/**
|
|
37
|
+
* Convert a boolean expression to Conjunctive Normal Form (CNF).
|
|
38
|
+
*/
|
|
39
|
+
export declare function toCNF(expr: BoxedExpression, ce: ComputeEngine): BoxedExpression;
|
|
40
|
+
/**
|
|
41
|
+
* Convert a boolean expression to Disjunctive Normal Form (DNF).
|
|
42
|
+
*/
|
|
43
|
+
export declare function toDNF(expr: BoxedExpression, ce: ComputeEngine): BoxedExpression;
|
|
44
|
+
/**
|
|
45
|
+
* Extract all propositional variables from a boolean expression.
|
|
46
|
+
* Returns a sorted array of unique variable names.
|
|
47
|
+
*/
|
|
48
|
+
export declare function extractVariables(expr: BoxedExpression): string[];
|
|
49
|
+
/**
|
|
50
|
+
* Evaluate a boolean expression with a given truth assignment.
|
|
51
|
+
* Returns True, False, or undefined if the expression cannot be evaluated.
|
|
52
|
+
*/
|
|
53
|
+
export declare function evaluateWithAssignment(expr: BoxedExpression, assignment: Record<string, boolean>, ce: ComputeEngine): BoxedExpression;
|
|
54
|
+
/**
|
|
55
|
+
* Generate all possible truth assignments for a list of variables.
|
|
56
|
+
* Each assignment is a Record mapping variable names to boolean values.
|
|
57
|
+
*/
|
|
58
|
+
export declare function generateAssignments(variables: string[]): Generator<Record<string, boolean>>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/* 0.32.1 */
|
|
2
|
+
export declare const LOGIC_LIBRARY: SymbolDefinitions;
|
|
3
|
+
export declare function simplifyLogicFunction(x: BoxedExpression): {
|
|
4
|
+
value: BoxedExpression;
|
|
5
|
+
because: string;
|
|
6
|
+
} | undefined;
|
|
7
|
+
export declare const LOGIC_FUNCTION_LIBRARY: SymbolDefinitions;
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
/* 0.32.1 */
|
|
2
|
+
export type IndexingSet = {
|
|
3
|
+
index: string | undefined;
|
|
4
|
+
lower: number;
|
|
5
|
+
upper: number;
|
|
6
|
+
isFinite: boolean;
|
|
7
|
+
};
|
|
8
|
+
/**
|
|
9
|
+
* IndexingSet is an expression describing an index variable
|
|
10
|
+
* and a range of values for that variable.
|
|
11
|
+
*
|
|
12
|
+
* Note that when this function is called the indexing set is assumed to be canonical: 'Hold' has been handled, the indexing set is a tuple, and the bounds are canonical.
|
|
13
|
+
*
|
|
14
|
+
* This can take several valid forms:
|
|
15
|
+
* - a symbol, e.g. `n`, the upper and lower bounds are assumed ot be infinity
|
|
16
|
+
* - a tuple, e.g. `["Pair", "n", 1]` or `["Tuple", "n", 1, 10]` with one
|
|
17
|
+
* or two bounds
|
|
18
|
+
*
|
|
19
|
+
* The result is a normalized version that includes the index, the lower and
|
|
20
|
+
* upper bounds of the range, and a flag indicating whether the range is finite.
|
|
21
|
+
* @param indexingSet
|
|
22
|
+
* @returns
|
|
23
|
+
*/
|
|
24
|
+
export declare function normalizeIndexingSet(indexingSet: BoxedExpression): IndexingSet;
|
|
25
|
+
export declare function normalizeIndexingSets(ops: ReadonlyArray<BoxedExpression>): IndexingSet[];
|
|
26
|
+
export declare function indexingSetCartesianProduct(indexingSets: IndexingSet[]): number[][];
|
|
27
|
+
/**
|
|
28
|
+
* Calculates the cartesian product of two arrays.
|
|
29
|
+
* ```ts
|
|
30
|
+
* // Example usage
|
|
31
|
+
* const array1 = [1, 2, 3];
|
|
32
|
+
* const array2 = ['a', 'b', 'c'];
|
|
33
|
+
* const result = cartesianProduct(array1, array2);
|
|
34
|
+
* console.log(result);
|
|
35
|
+
* // Output: [[1, 'a'], [1, 'b'], [1, 'c'], [2, 'a'], [2, 'b'], [2, 'c'], [3, 'a'], [3, 'b'], [3, 'c']]
|
|
36
|
+
* ```
|
|
37
|
+
* @param array1 - The first array.
|
|
38
|
+
* @param array2 - The second array.
|
|
39
|
+
* @returns The cartesian product as a 2D array.
|
|
40
|
+
*/
|
|
41
|
+
export declare function cartesianProduct(array1: number[], array2: number[]): number[][];
|
|
42
|
+
/** Given a sequence of arguments, return an array of Limits:
|
|
43
|
+
*
|
|
44
|
+
* - ["Range", 1, 10] -> ["Limits", "Unknown", 1, 10]
|
|
45
|
+
* - 1, 10 -> ["Limits", "Nothing", 1, 10]
|
|
46
|
+
* - [Tuple, "x", 1, 10] -> ["Limits", "x", 1, 10]
|
|
47
|
+
*
|
|
48
|
+
*/
|
|
49
|
+
export declare function canonicalLimitsSequence(ops: ReadonlyArray<BoxedExpression>, options: {
|
|
50
|
+
engine: ComputeEngine;
|
|
51
|
+
}): BoxedExpression[];
|
|
52
|
+
export declare function canonicalLimits(ops: ReadonlyArray<BoxedExpression>, { engine: ce }: {
|
|
53
|
+
engine: ComputeEngine;
|
|
54
|
+
}): BoxedExpression | null;
|
|
55
|
+
/** Return a limit/indexing set in canonical form as a `Limits` expression
|
|
56
|
+
* with:
|
|
57
|
+
* - `index` (a symbol), `Nothing` if none is present
|
|
58
|
+
* - `lower` (a number), `Nothing` if none is present
|
|
59
|
+
* - `upper` (a number), `Nothing` if none is present
|
|
60
|
+
*
|
|
61
|
+
* Assume we are in the context of a big operator
|
|
62
|
+
* (i.e. `pushScope()` has been called)
|
|
63
|
+
*/
|
|
64
|
+
export declare function canonicalIndexingSet(expr: BoxedExpression): BoxedExpression | undefined;
|
|
65
|
+
export declare function canonicalBigop(bigOp: string, body: BoxedExpression, indexingSets: BoxedExpression[], scope: Scope | undefined): BoxedExpression | null;
|
|
66
|
+
/**
|
|
67
|
+
* Process an expression of the form
|
|
68
|
+
* - ['Operator', body, ['Tuple', index1, lower, upper]]
|
|
69
|
+
* - ['Operator', body, ['Tuple', index1, lower, upper], ['Tuple', index2, lower, upper], ...]
|
|
70
|
+
* - ['Operator', body]
|
|
71
|
+
* - ['Operator', collection]
|
|
72
|
+
*
|
|
73
|
+
* `fn()` is the processing done on each element
|
|
74
|
+
* Apply the function `fn` to the body of a big operator, according to the
|
|
75
|
+
* indexing sets.
|
|
76
|
+
*/
|
|
77
|
+
export declare function reduceBigOp<T>(body: BoxedExpression, indexes: ReadonlyArray<BoxedExpression>, fn: (acc: T, x: BoxedExpression) => T | null, initial: T): Generator<T | undefined>;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
/* 0.32.1 */
|
|
2
|
+
import { BigNumFactory, NumericValue, NumericValueData } from './types';
|
|
3
|
+
import { ExactNumericValue } from './exact-numeric-value';
|
|
4
|
+
import { Expression } from '../../math-json/types';
|
|
5
|
+
import { SmallInteger } from '../numerics/types';
|
|
6
|
+
import { NumericPrimitiveType } from '../../common/type/types';
|
|
7
|
+
export declare class BigNumericValue extends NumericValue {
|
|
8
|
+
__brand: 'BigNumericValue';
|
|
9
|
+
decimal: Decimal;
|
|
10
|
+
bignum: BigNumFactory;
|
|
11
|
+
constructor(value: number | Decimal | NumericValueData, bignum: BigNumFactory);
|
|
12
|
+
get type(): NumericPrimitiveType;
|
|
13
|
+
get isExact(): boolean;
|
|
14
|
+
get asExact(): ExactNumericValue | undefined;
|
|
15
|
+
toJSON(): Expression;
|
|
16
|
+
toString(): string;
|
|
17
|
+
clone(value: number | Decimal | NumericValueData): BigNumericValue;
|
|
18
|
+
private _makeExact;
|
|
19
|
+
get re(): number;
|
|
20
|
+
get bignumRe(): Decimal;
|
|
21
|
+
get numerator(): BigNumericValue;
|
|
22
|
+
get denominator(): ExactNumericValue;
|
|
23
|
+
get isNaN(): boolean;
|
|
24
|
+
get isPositiveInfinity(): boolean;
|
|
25
|
+
get isNegativeInfinity(): boolean;
|
|
26
|
+
get isComplexInfinity(): boolean;
|
|
27
|
+
get isZero(): boolean;
|
|
28
|
+
isZeroWithTolerance(tolerance: number | Decimal): boolean;
|
|
29
|
+
get isOne(): boolean;
|
|
30
|
+
get isNegativeOne(): boolean;
|
|
31
|
+
sgn(): -1 | 0 | 1 | undefined;
|
|
32
|
+
N(): NumericValue;
|
|
33
|
+
neg(): BigNumericValue;
|
|
34
|
+
inv(): BigNumericValue;
|
|
35
|
+
add(other: number | NumericValue): NumericValue;
|
|
36
|
+
sub(other: NumericValue): NumericValue;
|
|
37
|
+
mul(other: number | Decimal | NumericValue): NumericValue;
|
|
38
|
+
div(other: SmallInteger | NumericValue): NumericValue;
|
|
39
|
+
pow(exponent: number | NumericValue | {
|
|
40
|
+
re: number;
|
|
41
|
+
im: number;
|
|
42
|
+
}): NumericValue;
|
|
43
|
+
root(exp: number): NumericValue;
|
|
44
|
+
sqrt(): NumericValue;
|
|
45
|
+
gcd(other: NumericValue): NumericValue;
|
|
46
|
+
abs(): NumericValue;
|
|
47
|
+
ln(base?: number): NumericValue;
|
|
48
|
+
exp(): NumericValue;
|
|
49
|
+
floor(): NumericValue;
|
|
50
|
+
ceil(): NumericValue;
|
|
51
|
+
round(): NumericValue;
|
|
52
|
+
eq(other: number | NumericValue): boolean;
|
|
53
|
+
lt(other: number | NumericValue): boolean | undefined;
|
|
54
|
+
lte(other: number | NumericValue): boolean | undefined;
|
|
55
|
+
gt(other: number | NumericValue): boolean | undefined;
|
|
56
|
+
gte(other: number | NumericValue): boolean | undefined;
|
|
57
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
/* 0.32.1 */
|
|
2
|
+
import { Rational, SmallInteger } from '../numerics/types';
|
|
3
|
+
import { BigNumFactory, ExactNumericValueData, NumericValue, NumericValueFactory } from './types';
|
|
4
|
+
import { Expression } from '../../math-json/types';
|
|
5
|
+
import { NumericPrimitiveType } from '../../common/type/types';
|
|
6
|
+
/**
|
|
7
|
+
* An ExactNumericValue is the sum of a Gaussian imaginary and the product of
|
|
8
|
+
* a rational number and a square root:
|
|
9
|
+
*
|
|
10
|
+
* a/b * sqrt(c) + ki where a, b, c and k are integers
|
|
11
|
+
*
|
|
12
|
+
* Note that ExactNumericValue does not "know" about BigNumericValue, but
|
|
13
|
+
* BigNumericValue "knows" about ExactNumericValue.
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
export declare class ExactNumericValue extends NumericValue {
|
|
17
|
+
__brand: 'ExactNumericValue';
|
|
18
|
+
rational: Rational;
|
|
19
|
+
radical: number;
|
|
20
|
+
im: number;
|
|
21
|
+
factory: NumericValueFactory;
|
|
22
|
+
bignum: BigNumFactory;
|
|
23
|
+
/** The caller is responsible to make sure the input is valid, i.e.
|
|
24
|
+
* - rational is a fraction of integers (but it may not be reduced)
|
|
25
|
+
* - radical is an integer
|
|
26
|
+
*/
|
|
27
|
+
constructor(value: number | bigint | ExactNumericValueData, factory: NumericValueFactory, bignum: BigNumFactory);
|
|
28
|
+
get type(): NumericPrimitiveType;
|
|
29
|
+
get isExact(): boolean;
|
|
30
|
+
get asExact(): NumericValue | undefined;
|
|
31
|
+
toJSON(): Expression;
|
|
32
|
+
clone(value: number | ExactNumericValueData): ExactNumericValue;
|
|
33
|
+
/** Object.toString() */
|
|
34
|
+
toString(): string;
|
|
35
|
+
get sign(): -1 | 0 | 1;
|
|
36
|
+
get re(): number;
|
|
37
|
+
get bignumRe(): Decimal;
|
|
38
|
+
get numerator(): ExactNumericValue;
|
|
39
|
+
get denominator(): ExactNumericValue;
|
|
40
|
+
normalize(): void;
|
|
41
|
+
get isNaN(): boolean;
|
|
42
|
+
get isPositiveInfinity(): boolean;
|
|
43
|
+
get isNegativeInfinity(): boolean;
|
|
44
|
+
get isComplexInfinity(): boolean;
|
|
45
|
+
get isZero(): boolean;
|
|
46
|
+
get isOne(): boolean;
|
|
47
|
+
get isNegativeOne(): boolean;
|
|
48
|
+
sgn(): -1 | 0 | 1 | undefined;
|
|
49
|
+
N(): NumericValue;
|
|
50
|
+
neg(): ExactNumericValue;
|
|
51
|
+
inv(): NumericValue;
|
|
52
|
+
add(other: number | NumericValue): NumericValue;
|
|
53
|
+
sub(other: NumericValue): NumericValue;
|
|
54
|
+
mul(other: number | Decimal | NumericValue): NumericValue;
|
|
55
|
+
div(other: SmallInteger | NumericValue): NumericValue;
|
|
56
|
+
pow(exponent: number | NumericValue | {
|
|
57
|
+
re: number;
|
|
58
|
+
im: number;
|
|
59
|
+
}): NumericValue;
|
|
60
|
+
root(exponent: number): NumericValue;
|
|
61
|
+
sqrt(): NumericValue;
|
|
62
|
+
gcd(other: NumericValue): NumericValue;
|
|
63
|
+
abs(): NumericValue;
|
|
64
|
+
ln(base?: number): NumericValue;
|
|
65
|
+
exp(): NumericValue;
|
|
66
|
+
floor(): NumericValue;
|
|
67
|
+
ceil(): NumericValue;
|
|
68
|
+
round(): NumericValue;
|
|
69
|
+
eq(other: number | NumericValue): boolean;
|
|
70
|
+
lt(other: number | NumericValue): boolean | undefined;
|
|
71
|
+
lte(other: number | NumericValue): boolean | undefined;
|
|
72
|
+
gt(other: number | NumericValue): boolean | undefined;
|
|
73
|
+
gte(other: number | NumericValue): boolean | undefined;
|
|
74
|
+
static sum(values: NumericValue[], factory: NumericValueFactory, bignumFactory: BigNumFactory): NumericValue[];
|
|
75
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/* 0.32.1 */
|
|
2
|
+
import { BigNumFactory, NumericValue, NumericValueData } from './types';
|
|
3
|
+
import type { Expression } from '../../math-json/types';
|
|
4
|
+
import type { SmallInteger } from '../numerics/types';
|
|
5
|
+
import { NumericPrimitiveType } from '../../common/type/types';
|
|
6
|
+
export declare class MachineNumericValue extends NumericValue {
|
|
7
|
+
__brand: 'MachineNumericValue';
|
|
8
|
+
decimal: number;
|
|
9
|
+
bignum: BigNumFactory;
|
|
10
|
+
constructor(value: number | Decimal | NumericValueData, bignum: BigNumFactory);
|
|
11
|
+
private _makeExact;
|
|
12
|
+
get type(): NumericPrimitiveType;
|
|
13
|
+
get isExact(): boolean;
|
|
14
|
+
get asExact(): NumericValue | undefined;
|
|
15
|
+
toJSON(): Expression;
|
|
16
|
+
toString(): string;
|
|
17
|
+
clone(value: number | Decimal | NumericValueData): MachineNumericValue;
|
|
18
|
+
get re(): number;
|
|
19
|
+
get bignumRe(): Decimal | undefined;
|
|
20
|
+
get numerator(): MachineNumericValue;
|
|
21
|
+
get denominator(): NumericValue;
|
|
22
|
+
get isNaN(): boolean;
|
|
23
|
+
get isPositiveInfinity(): boolean;
|
|
24
|
+
get isNegativeInfinity(): boolean;
|
|
25
|
+
get isComplexInfinity(): boolean;
|
|
26
|
+
get isZero(): boolean;
|
|
27
|
+
isZeroWithTolerance(tolerance: number | Decimal): boolean;
|
|
28
|
+
get isOne(): boolean;
|
|
29
|
+
get isNegativeOne(): boolean;
|
|
30
|
+
sgn(): -1 | 0 | 1 | undefined;
|
|
31
|
+
N(): NumericValue;
|
|
32
|
+
neg(): NumericValue;
|
|
33
|
+
inv(): NumericValue;
|
|
34
|
+
add(other: number | NumericValue): NumericValue;
|
|
35
|
+
sub(other: NumericValue): NumericValue;
|
|
36
|
+
mul(other: number | Decimal | NumericValue): NumericValue;
|
|
37
|
+
div(other: SmallInteger | NumericValue): NumericValue;
|
|
38
|
+
pow(exponent: number | {
|
|
39
|
+
re: number;
|
|
40
|
+
im: number;
|
|
41
|
+
}): NumericValue;
|
|
42
|
+
root(exponent: number): NumericValue;
|
|
43
|
+
sqrt(): NumericValue;
|
|
44
|
+
gcd(other: NumericValue): NumericValue;
|
|
45
|
+
abs(): NumericValue;
|
|
46
|
+
ln(base?: number): NumericValue;
|
|
47
|
+
exp(): NumericValue;
|
|
48
|
+
floor(): NumericValue;
|
|
49
|
+
ceil(): NumericValue;
|
|
50
|
+
round(): NumericValue;
|
|
51
|
+
eq(other: number | NumericValue): boolean;
|
|
52
|
+
lt(other: number | NumericValue): boolean | undefined;
|
|
53
|
+
lte(other: number | NumericValue): boolean | undefined;
|
|
54
|
+
gt(other: number | NumericValue): boolean | undefined;
|
|
55
|
+
gte(other: number | NumericValue): boolean | undefined;
|
|
56
|
+
}
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
/* 0.32.1 */
|
|
2
|
+
*
|
|
3
|
+
* ## THEORY OF OPERATIONS
|
|
4
|
+
*
|
|
5
|
+
* A numeric value represents a number literal.
|
|
6
|
+
*
|
|
7
|
+
* It is defined as a functional field over the complex numbers.
|
|
8
|
+
*
|
|
9
|
+
* It includes basic arithmetic operations: addition, subtraction,
|
|
10
|
+
* multiplication, power, division, negation, inversion, square root.
|
|
11
|
+
*
|
|
12
|
+
* Several flavors of numeric values are available:
|
|
13
|
+
* - `NumericValue` is the base class for all numeric values.
|
|
14
|
+
* - `ExactNumericValue` is a numeric value that represents numbers as the
|
|
15
|
+
* sum of an imaginary number and the product of a rational and a radical
|
|
16
|
+
* (square root of a integer).
|
|
17
|
+
* - `BigNumericValue` is a numeric value that represents numbers as the
|
|
18
|
+
* sum of an imaginary number and a decimal (arbitrary precision) number.
|
|
19
|
+
*
|
|
20
|
+
* An exact numeric value may need to be converted to a float one, for
|
|
21
|
+
* example when calculating the square root of a square root.
|
|
22
|
+
*
|
|
23
|
+
* A float numeric value is never converted to an exact one.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
import { Decimal } from 'decimal.js';
|
|
27
|
+
import type { Rational, SmallInteger } from '../numerics/types';
|
|
28
|
+
import { NumericPrimitiveType } from '../../common/type/types';
|
|
29
|
+
export type BigNumFactory = (value: Decimal.Value) => Decimal;
|
|
30
|
+
/** The value is equal to `(decimal * rational * sqrt(radical)) + im * i`
|
|
31
|
+
* @category Numerics */
|
|
32
|
+
export type ExactNumericValueData = {
|
|
33
|
+
rational?: Rational;
|
|
34
|
+
radical?: number;
|
|
35
|
+
};
|
|
36
|
+
/** @category Numerics */
|
|
37
|
+
export type NumericValueData = {
|
|
38
|
+
re?: Decimal | number;
|
|
39
|
+
im?: number;
|
|
40
|
+
};
|
|
41
|
+
/** @category Numerics */
|
|
42
|
+
export type NumericValueFactory = (data: number | Decimal | NumericValueData) => NumericValue;
|
|
43
|
+
/** @category Numerics */
|
|
44
|
+
export declare abstract class NumericValue {
|
|
45
|
+
abstract get type(): NumericPrimitiveType;
|
|
46
|
+
/** True if numeric value is the product of a rational and the square root of an integer.
|
|
47
|
+
*
|
|
48
|
+
* This includes: 3/4√5, -2, √2, etc...
|
|
49
|
+
*
|
|
50
|
+
* But it doesn't include 0.5, 3.141592, etc...
|
|
51
|
+
*
|
|
52
|
+
*/
|
|
53
|
+
abstract get isExact(): boolean;
|
|
54
|
+
/** If `isExact()`, returns an ExactNumericValue, otherwise returns undefined.
|
|
55
|
+
*/
|
|
56
|
+
abstract get asExact(): NumericValue | undefined;
|
|
57
|
+
/** The real part of this numeric value.
|
|
58
|
+
*
|
|
59
|
+
* Can be negative, 0 or positive.
|
|
60
|
+
*/
|
|
61
|
+
abstract get re(): number;
|
|
62
|
+
/** bignum version of .re, if available */
|
|
63
|
+
get bignumRe(): Decimal | undefined;
|
|
64
|
+
/** The imaginary part of this numeric value.
|
|
65
|
+
*
|
|
66
|
+
* Can be negative, zero or positive.
|
|
67
|
+
*/
|
|
68
|
+
im: number;
|
|
69
|
+
get bignumIm(): Decimal | undefined;
|
|
70
|
+
abstract get numerator(): NumericValue;
|
|
71
|
+
abstract get denominator(): NumericValue;
|
|
72
|
+
abstract get isNaN(): boolean;
|
|
73
|
+
abstract get isPositiveInfinity(): boolean;
|
|
74
|
+
abstract get isNegativeInfinity(): boolean;
|
|
75
|
+
abstract get isComplexInfinity(): boolean;
|
|
76
|
+
abstract get isZero(): boolean;
|
|
77
|
+
isZeroWithTolerance(_tolerance: number | Decimal): boolean;
|
|
78
|
+
abstract get isOne(): boolean;
|
|
79
|
+
abstract get isNegativeOne(): boolean;
|
|
80
|
+
/** The sign of complex numbers is undefined */
|
|
81
|
+
abstract sgn(): -1 | 0 | 1 | undefined;
|
|
82
|
+
/** Return a non-exact representation of the numeric value */
|
|
83
|
+
abstract N(): NumericValue;
|
|
84
|
+
abstract neg(): NumericValue;
|
|
85
|
+
abstract inv(): NumericValue;
|
|
86
|
+
abstract add(other: number | NumericValue): NumericValue;
|
|
87
|
+
abstract sub(other: NumericValue): NumericValue;
|
|
88
|
+
abstract mul(other: number | Decimal | NumericValue): NumericValue;
|
|
89
|
+
abstract div(other: SmallInteger | NumericValue): NumericValue;
|
|
90
|
+
abstract pow(n: number | NumericValue | {
|
|
91
|
+
re: number;
|
|
92
|
+
im: number;
|
|
93
|
+
}): NumericValue;
|
|
94
|
+
abstract root(n: number): NumericValue;
|
|
95
|
+
abstract sqrt(): NumericValue;
|
|
96
|
+
abstract gcd(other: NumericValue): NumericValue;
|
|
97
|
+
abstract abs(): NumericValue;
|
|
98
|
+
abstract ln(base?: number): NumericValue;
|
|
99
|
+
abstract exp(): NumericValue;
|
|
100
|
+
abstract floor(): NumericValue;
|
|
101
|
+
abstract ceil(): NumericValue;
|
|
102
|
+
abstract round(): NumericValue;
|
|
103
|
+
abstract eq(other: number | NumericValue): boolean;
|
|
104
|
+
abstract lt(other: number | NumericValue): boolean | undefined;
|
|
105
|
+
abstract lte(other: number | NumericValue): boolean | undefined;
|
|
106
|
+
abstract gt(other: number | NumericValue): boolean | undefined;
|
|
107
|
+
abstract gte(other: number | NumericValue): boolean | undefined;
|
|
108
|
+
/** Object.valueOf(): returns a primitive value, preferably a JavaScript
|
|
109
|
+
* number over a string, even if at the expense of precision */
|
|
110
|
+
valueOf(): number | string;
|
|
111
|
+
/** Object.toPrimitive() */
|
|
112
|
+
[Symbol.toPrimitive](hint: 'number' | 'string' | 'default'): number | string | null;
|
|
113
|
+
/** Object.toJSON */
|
|
114
|
+
toJSON(): any;
|
|
115
|
+
print(): void;
|
|
116
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/* 0.32.1 */
|
|
2
|
+
/** An interval is a continuous set of real numbers */
|
|
3
|
+
export type Interval = {
|
|
4
|
+
start: number;
|
|
5
|
+
openStart: boolean;
|
|
6
|
+
end: number;
|
|
7
|
+
openEnd: boolean;
|
|
8
|
+
};
|
|
9
|
+
export declare function interval(expr: BoxedExpression): Interval | undefined;
|
|
10
|
+
export declare function intervalContains(int: Interval, val: number): boolean;
|
|
11
|
+
/** Return true if int1 is a subset of int2 */
|
|
12
|
+
export declare function intervalSubset(int1: Interval, int2: Interval): boolean;
|