@danielsimonjr/mathts-functions 0.64.0 → 0.64.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/algebra/solver/utils/solveValidation.d.ts.map +1 -1
- package/dist/bitwise/useMatrixForArrayScalar.d.ts.map +1 -1
- package/dist/core/function/config.d.ts +2 -2
- package/dist/core/function/config.d.ts.map +1 -1
- package/dist/distribution-functions.d.ts.map +1 -1
- package/dist/error/ArgumentsError.d.ts.map +1 -1
- package/dist/factories/index.d.ts +4 -4
- package/dist/factories/index.d.ts.map +1 -1
- package/dist/factories/matrix-bridge.d.ts.map +1 -1
- package/dist/gpu/elementwise-gpu.d.ts +15 -15
- package/dist/gpu/elementwise-gpu.d.ts.map +1 -1
- package/dist/matrix/eigs/realSymmetric.d.ts +1 -1
- package/dist/matrix/eigs/realSymmetric.d.ts.map +1 -1
- package/dist/matrix/sqrtm.d.ts +1 -1
- package/dist/numeric/interval.d.ts.map +1 -1
- package/dist/plain/number/arithmetic.d.ts +26 -23
- package/dist/plain/number/arithmetic.d.ts.map +1 -1
- package/dist/plain/number/bitwise.d.ts +10 -7
- package/dist/plain/number/bitwise.d.ts.map +1 -1
- package/dist/plain/number/logical.d.ts +7 -4
- package/dist/plain/number/logical.d.ts.map +1 -1
- package/dist/plain/number/relational.d.ts +9 -7
- package/dist/plain/number/relational.d.ts.map +1 -1
- package/dist/plain/number/trigonometry.d.ts +28 -25
- package/dist/plain/number/trigonometry.d.ts.map +1 -1
- package/dist/plain/number/utils.d.ts +7 -5
- package/dist/plain/number/utils.d.ts.map +1 -1
- package/dist/signal-filter-extra.d.ts.map +1 -1
- package/dist/type/local/Decimal.d.ts.map +1 -1
- package/dist/typed/index.d.ts +175 -175
- package/dist/typed/polynomial-ideal.d.ts.map +1 -1
- package/dist/utils/bigint.d.ts.map +1 -1
- package/dist/wasm/WasmLoader.d.ts.map +1 -1
- package/dist/wasm/elementwise/wasm-bridge.d.ts +1 -1
- package/dist/wasm/elementwise/wasm-bridge.d.ts.map +1 -1
- package/dist/wasm/mathts-as.wasm +0 -0
- package/dist/wasm/wasm-manifest.json +1 -1
- package/package.json +10 -10
- package/types/modules.d.ts +19 -19
|
@@ -1,101 +1,104 @@
|
|
|
1
|
+
declare const n1 = "number";
|
|
2
|
+
declare const n2 = "number, number";
|
|
1
3
|
export declare function acosNumber(x: number): number;
|
|
2
4
|
export declare namespace acosNumber {
|
|
3
|
-
|
|
5
|
+
export { n1 as signature };
|
|
4
6
|
}
|
|
5
7
|
export declare function acoshNumber(x: number): number;
|
|
6
8
|
export declare namespace acoshNumber {
|
|
7
|
-
|
|
9
|
+
export { n1 as signature };
|
|
8
10
|
}
|
|
9
11
|
export declare function acotNumber(x: number): number;
|
|
10
12
|
export declare namespace acotNumber {
|
|
11
|
-
|
|
13
|
+
export { n1 as signature };
|
|
12
14
|
}
|
|
13
15
|
export declare function acothNumber(x: number): number;
|
|
14
16
|
export declare namespace acothNumber {
|
|
15
|
-
|
|
17
|
+
export { n1 as signature };
|
|
16
18
|
}
|
|
17
19
|
export declare function acscNumber(x: number): number;
|
|
18
20
|
export declare namespace acscNumber {
|
|
19
|
-
|
|
21
|
+
export { n1 as signature };
|
|
20
22
|
}
|
|
21
23
|
export declare function acschNumber(x: number): number;
|
|
22
24
|
export declare namespace acschNumber {
|
|
23
|
-
|
|
25
|
+
export { n1 as signature };
|
|
24
26
|
}
|
|
25
27
|
export declare function asecNumber(x: number): number;
|
|
26
28
|
export declare namespace asecNumber {
|
|
27
|
-
|
|
29
|
+
export { n1 as signature };
|
|
28
30
|
}
|
|
29
31
|
export declare function asechNumber(x: number): number;
|
|
30
32
|
export declare namespace asechNumber {
|
|
31
|
-
|
|
33
|
+
export { n1 as signature };
|
|
32
34
|
}
|
|
33
35
|
export declare function asinNumber(x: number): number;
|
|
34
36
|
export declare namespace asinNumber {
|
|
35
|
-
|
|
37
|
+
export { n1 as signature };
|
|
36
38
|
}
|
|
37
39
|
export declare function asinhNumber(x: number): number;
|
|
38
40
|
export declare namespace asinhNumber {
|
|
39
|
-
|
|
41
|
+
export { n1 as signature };
|
|
40
42
|
}
|
|
41
43
|
export declare function atanNumber(x: number): number;
|
|
42
44
|
export declare namespace atanNumber {
|
|
43
|
-
|
|
45
|
+
export { n1 as signature };
|
|
44
46
|
}
|
|
45
47
|
export declare function atan2Number(y: number, x: number): number;
|
|
46
48
|
export declare namespace atan2Number {
|
|
47
|
-
|
|
49
|
+
export { n2 as signature };
|
|
48
50
|
}
|
|
49
51
|
export declare function atanhNumber(x: number): number;
|
|
50
52
|
export declare namespace atanhNumber {
|
|
51
|
-
|
|
53
|
+
export { n1 as signature };
|
|
52
54
|
}
|
|
53
55
|
export declare function cosNumber(x: number): number;
|
|
54
56
|
export declare namespace cosNumber {
|
|
55
|
-
|
|
57
|
+
export { n1 as signature };
|
|
56
58
|
}
|
|
57
59
|
export declare function coshNumber(x: number): number;
|
|
58
60
|
export declare namespace coshNumber {
|
|
59
|
-
|
|
61
|
+
export { n1 as signature };
|
|
60
62
|
}
|
|
61
63
|
export declare function cotNumber(x: number): number;
|
|
62
64
|
export declare namespace cotNumber {
|
|
63
|
-
|
|
65
|
+
export { n1 as signature };
|
|
64
66
|
}
|
|
65
67
|
export declare function cothNumber(x: number): number;
|
|
66
68
|
export declare namespace cothNumber {
|
|
67
|
-
|
|
69
|
+
export { n1 as signature };
|
|
68
70
|
}
|
|
69
71
|
export declare function cscNumber(x: number): number;
|
|
70
72
|
export declare namespace cscNumber {
|
|
71
|
-
|
|
73
|
+
export { n1 as signature };
|
|
72
74
|
}
|
|
73
75
|
export declare function cschNumber(x: number): number;
|
|
74
76
|
export declare namespace cschNumber {
|
|
75
|
-
|
|
77
|
+
export { n1 as signature };
|
|
76
78
|
}
|
|
77
79
|
export declare function secNumber(x: number): number;
|
|
78
80
|
export declare namespace secNumber {
|
|
79
|
-
|
|
81
|
+
export { n1 as signature };
|
|
80
82
|
}
|
|
81
83
|
export declare function sechNumber(x: number): number;
|
|
82
84
|
export declare namespace sechNumber {
|
|
83
|
-
|
|
85
|
+
export { n1 as signature };
|
|
84
86
|
}
|
|
85
87
|
export declare function sinNumber(x: number): number;
|
|
86
88
|
export declare namespace sinNumber {
|
|
87
|
-
|
|
89
|
+
export { n1 as signature };
|
|
88
90
|
}
|
|
89
91
|
export declare function sinhNumber(x: number): number;
|
|
90
92
|
export declare namespace sinhNumber {
|
|
91
|
-
|
|
93
|
+
export { n1 as signature };
|
|
92
94
|
}
|
|
93
95
|
export declare function tanNumber(x: number): number;
|
|
94
96
|
export declare namespace tanNumber {
|
|
95
|
-
|
|
97
|
+
export { n1 as signature };
|
|
96
98
|
}
|
|
97
99
|
export declare function tanhNumber(x: number): number;
|
|
98
100
|
export declare namespace tanhNumber {
|
|
99
|
-
|
|
101
|
+
export { n1 as signature };
|
|
100
102
|
}
|
|
103
|
+
export {};
|
|
101
104
|
//# sourceMappingURL=trigonometry.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"trigonometry.d.ts","sourceRoot":"","sources":["../../../src/plain/number/trigonometry.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"trigonometry.d.ts","sourceRoot":"","sources":["../../../src/plain/number/trigonometry.ts"],"names":[],"mappings":"AAEA,QAAA,MAAM,EAAE,WAAW,CAAC;AACpB,QAAA,MAAM,EAAE,mBAAmB,CAAC;AAE5B,wBAAgB,UAAU,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAE5C;yBAFe,UAAU;aAGH,EAAE;;AAEzB,wBAAgB,WAAW,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAE7C;yBAFe,WAAW;aAGH,EAAE;;AAE1B,wBAAgB,UAAU,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAE5C;yBAFe,UAAU;aAGH,EAAE;;AAEzB,wBAAgB,WAAW,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAE7C;yBAFe,WAAW;aAGH,EAAE;;AAE1B,wBAAgB,UAAU,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAE5C;yBAFe,UAAU;aAGH,EAAE;;AAEzB,wBAAgB,WAAW,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAG7C;yBAHe,WAAW;aAIH,EAAE;;AAE1B,wBAAgB,UAAU,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAE5C;yBAFe,UAAU;aAGH,EAAE;;AAEzB,wBAAgB,WAAW,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAI7C;yBAJe,WAAW;aAKH,EAAE;;AAE1B,wBAAgB,UAAU,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAE5C;yBAFe,UAAU;aAGH,EAAE;;AAEzB,wBAAgB,WAAW,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAE7C;yBAFe,WAAW;aAGH,EAAE;;AAE1B,wBAAgB,UAAU,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAE5C;yBAFe,UAAU;aAGH,EAAE;;AAEzB,wBAAgB,WAAW,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,CAExD;yBAFe,WAAW;aAGH,EAAE;;AAE1B,wBAAgB,WAAW,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAE7C;yBAFe,WAAW;aAGH,EAAE;;AAE1B,wBAAgB,SAAS,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAE3C;yBAFe,SAAS;aAGH,EAAE;;AAExB,wBAAgB,UAAU,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAE5C;yBAFe,UAAU;aAGH,EAAE;;AAEzB,wBAAgB,SAAS,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAE3C;yBAFe,SAAS;aAGH,EAAE;;AAExB,wBAAgB,UAAU,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAG5C;yBAHe,UAAU;aAIH,EAAE;;AAEzB,wBAAgB,SAAS,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAE3C;yBAFe,SAAS;aAGH,EAAE;;AAExB,wBAAgB,UAAU,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAO5C;yBAPe,UAAU;aAQH,EAAE;;AAEzB,wBAAgB,SAAS,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAE3C;yBAFe,SAAS;aAGH,EAAE;;AAExB,wBAAgB,UAAU,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAE5C;yBAFe,UAAU;aAGH,EAAE;;AAEzB,wBAAgB,SAAS,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAE3C;yBAFe,SAAS;aAGH,EAAE;;AAExB,wBAAgB,UAAU,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAE5C;yBAFe,UAAU;aAGH,EAAE;;AAEzB,wBAAgB,SAAS,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAE3C;yBAFe,SAAS;aAGH,EAAE;;AAExB,wBAAgB,UAAU,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAE5C;yBAFe,UAAU;aAGH,EAAE"}
|
|
@@ -1,21 +1,23 @@
|
|
|
1
|
+
declare const n1 = "number";
|
|
1
2
|
export declare function isIntegerNumber(x: number): boolean;
|
|
2
3
|
export declare namespace isIntegerNumber {
|
|
3
|
-
|
|
4
|
+
export { n1 as signature };
|
|
4
5
|
}
|
|
5
6
|
export declare function isNegativeNumber(x: number): boolean;
|
|
6
7
|
export declare namespace isNegativeNumber {
|
|
7
|
-
|
|
8
|
+
export { n1 as signature };
|
|
8
9
|
}
|
|
9
10
|
export declare function isPositiveNumber(x: number): boolean;
|
|
10
11
|
export declare namespace isPositiveNumber {
|
|
11
|
-
|
|
12
|
+
export { n1 as signature };
|
|
12
13
|
}
|
|
13
14
|
export declare function isZeroNumber(x: number): boolean;
|
|
14
15
|
export declare namespace isZeroNumber {
|
|
15
|
-
|
|
16
|
+
export { n1 as signature };
|
|
16
17
|
}
|
|
17
18
|
export declare function isNaNNumber(x: number): boolean;
|
|
18
19
|
export declare namespace isNaNNumber {
|
|
19
|
-
|
|
20
|
+
export { n1 as signature };
|
|
20
21
|
}
|
|
22
|
+
export {};
|
|
21
23
|
//# sourceMappingURL=utils.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/plain/number/utils.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/plain/number/utils.ts"],"names":[],"mappings":"AAEA,QAAA,MAAM,EAAE,WAAW,CAAC;AAEpB,wBAAgB,eAAe,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAElD;yBAFe,eAAe;aAGH,EAAE;;AAE9B,wBAAgB,gBAAgB,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAEnD;yBAFe,gBAAgB;aAGH,EAAE;;AAE/B,wBAAgB,gBAAgB,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAEnD;yBAFe,gBAAgB;aAGH,EAAE;;AAE/B,wBAAgB,YAAY,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAE/C;yBAFe,YAAY;aAGH,EAAE;;AAE3B,wBAAgB,WAAW,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAE9C;yBAFe,WAAW;aAGH,EAAE"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"signal-filter-extra.d.ts","sourceRoot":"","sources":["../src/signal-filter-extra.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAC;AAMrD,KAAK,GAAG,GAAG,SAAS,MAAM,EAAE,GAAG,YAAY,CAAC;AAG5C,eAAO,MAAM,IAAI,
|
|
1
|
+
{"version":3,"file":"signal-filter-extra.d.ts","sourceRoot":"","sources":["../src/signal-filter-extra.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAC;AAMrD,KAAK,GAAG,GAAG,SAAS,MAAM,EAAE,GAAG,YAAY,CAAC;AAG5C,eAAO,MAAM,IAAI,MAAO,MAAM,KAAG,MAA+D,CAAC;AAEjG;;;;GAIG;AACH,wBAAgB,MAAM,CAAC,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,MAAM,EAAE,CAahE;AAkCD;;;GAGG;AACH,wBAAgB,OAAO,CAAC,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,GAAG,MAAM,EAAE,CAExD;AAED;;;;GAIG;AACH,wBAAgB,SAAS,CAAC,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,GAAG,MAAM,EAAE,CAuBlD;AAED;;;;GAIG;AACH,wBAAgB,QAAQ,CAAC,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,GAAG,MAAM,EAAE,CA+BzD;AAMD,eAAO,MAAM,IAAI,MAAO,OAAO,KAAK,OAAO,KAAG,OAAmB,CAAC;AAClE,eAAO,MAAM,IAAI,MAAO,OAAO,KAAK,OAAO,KAAG,OAAmB,CAAC;AAClE,eAAO,MAAM,IAAI,MAAO,OAAO,KAAK,OAAO,KAAG,OAAwB,CAAC;AACvE,eAAO,MAAM,IAAI,MAAO,OAAO,KAAK,OAAO,KAAG,OAAsB,CAAC;AACrE,4FAA4F;AAC5F,eAAO,MAAM,MAAM,MAAO,OAAO,KAAK,MAAM,KAAG,OAAqC,CAAC;AAErF,wEAAwE;AACxE,wBAAgB,aAAa,CAAC,KAAK,EAAE,OAAO,EAAE,GAAG,MAAM,EAAE,CAWxD;AAED,mFAAmF;AACnF,MAAM,WAAW,WAAW;IAC1B,CAAC,EAAE,OAAO,EAAE,CAAC;IACb,CAAC,EAAE,OAAO,EAAE,CAAC;IACb,CAAC,EAAE,MAAM,CAAC;CACX;AAED,MAAM,MAAM,WAAW,GAAG,KAAK,GAAG,MAAM,GAAG,UAAU,GAAG,UAAU,CAAC;AAoFnE,6DAA6D;AAC7D,wBAAgB,OAAO,CAAC,CAAC,EAAE,OAAO,EAAE,EAAE,CAAC,EAAE,OAAO,EAAE,EAAE,CAAC,EAAE,MAAM,GAAG;IAAE,CAAC,EAAE,MAAM,EAAE,CAAC;IAAC,CAAC,EAAE,MAAM,EAAE,CAAA;CAAE,CAE3F;AAgBD;;;;;GAKG;AACH,wBAAgB,eAAe,CAC7B,KAAK,EAAE,WAAW,EAClB,EAAE,EAAE,MAAM,GAAG,SAAS,MAAM,EAAE,EAC9B,KAAK,EAAE,WAAW,GACjB;IAAE,CAAC,EAAE,MAAM,EAAE,CAAC;IAAC,CAAC,EAAE,MAAM,EAAE,CAAA;CAAE,CAgB9B;AAaD;;;;;GAKG;AACH,wBAAgB,MAAM,CACpB,CAAC,EAAE,MAAM,EACT,EAAE,EAAE,MAAM,GAAG,SAAS,MAAM,EAAE,EAC9B,KAAK,GAAE,WAAmB,GACzB;IAAE,CAAC,EAAE,MAAM,EAAE,CAAC;IAAC,CAAC,EAAE,MAAM,EAAE,CAAA;CAAE,CAG9B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Decimal.d.ts","sourceRoot":"","sources":["../../../src/type/local/Decimal.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAGH,eAAO,MAAM,QAAQ,IAAI,CAAC;AAC1B,eAAO,MAAM,UAAU,IAAI,CAAC;AAC5B,eAAO,MAAM,UAAU,IAAI,CAAC;AAC5B,eAAO,MAAM,WAAW,IAAI,CAAC;AAC7B,eAAO,MAAM,aAAa,IAAI,CAAC;AAC/B,eAAO,MAAM,eAAe,IAAI,CAAC;AACjC,eAAO,MAAM,eAAe,IAAI,CAAC;AACjC,eAAO,MAAM,eAAe,IAAI,CAAC;AACjC,eAAO,MAAM,gBAAgB,IAAI,CAAC;AAClC,eAAO,MAAM,MAAM,IAAI,CAAC;AAExB,MAAM,WAAW,aAAa;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAYD;;GAEG;AACH,qBAAa,OAAO;IAClB,mDAAmD;IAC5C,CAAC,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC;IAC1B,6BAA6B;IACtB,CAAC,EAAE,MAAM,CAAC;IACjB,wBAAwB;IACjB,CAAC,EAAE,MAAM,CAAC;IAEjB,8BAA8B;IAC9B,MAAM,CAAC,QAAQ,CAAC,QAAQ,KAAY;IACpC,MAAM,CAAC,QAAQ,CAAC,UAAU,KAAc;IACxC,MAAM,CAAC,QAAQ,CAAC,UAAU,KAAc;IACxC,MAAM,CAAC,QAAQ,CAAC,WAAW,KAAe;IAC1C,MAAM,CAAC,QAAQ,CAAC,aAAa,KAAiB;IAC9C,MAAM,CAAC,QAAQ,CAAC,eAAe,KAAmB;IAClD,MAAM,CAAC,QAAQ,CAAC,eAAe,KAAmB;IAClD,MAAM,CAAC,QAAQ,CAAC,eAAe,KAAmB;IAClD,MAAM,CAAC,QAAQ,CAAC,gBAAgB,KAAoB;IACpD,MAAM,CAAC,QAAQ,CAAC,MAAM,KAAU;IAEhC,wBAAwB;IACxB,MAAM,KAAK,SAAS,IAAI,MAAM,CAE7B;
|
|
1
|
+
{"version":3,"file":"Decimal.d.ts","sourceRoot":"","sources":["../../../src/type/local/Decimal.ts"],"names":[],"mappings":"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"}
|
package/dist/typed/index.d.ts
CHANGED
|
@@ -64,58 +64,129 @@ export { typedUnit } from './unit.js';
|
|
|
64
64
|
* graph theory, distribution objects, hypothesis test, and algebra functions.
|
|
65
65
|
*/
|
|
66
66
|
export declare const typedFunctions: {
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
67
|
+
add: import("typed-function").TypedFunction;
|
|
68
|
+
subtract: import("typed-function").TypedFunction;
|
|
69
|
+
multiply: import("typed-function").TypedFunction;
|
|
70
|
+
divide: import("typed-function").TypedFunction;
|
|
71
|
+
unaryMinus: import("typed-function").TypedFunction;
|
|
72
|
+
unaryPlus: import("typed-function").TypedFunction;
|
|
73
|
+
abs: import("typed-function").TypedFunction;
|
|
74
|
+
sign: import("typed-function").TypedFunction;
|
|
75
|
+
pow: import("typed-function").TypedFunction;
|
|
76
|
+
sqrt: import("typed-function").TypedFunction;
|
|
77
|
+
square: import("typed-function").TypedFunction;
|
|
78
|
+
cube: import("typed-function").TypedFunction;
|
|
79
|
+
cbrt: import("typed-function").TypedFunction;
|
|
80
|
+
nthRoot: import("typed-function").TypedFunction;
|
|
81
|
+
exp: import("typed-function").TypedFunction;
|
|
82
|
+
log: import("typed-function").TypedFunction;
|
|
83
|
+
log10: import("typed-function").TypedFunction;
|
|
84
|
+
log2: import("typed-function").TypedFunction;
|
|
85
|
+
log1p: import("typed-function").TypedFunction;
|
|
86
|
+
expm1: import("typed-function").TypedFunction;
|
|
87
|
+
round: import("typed-function").TypedFunction;
|
|
88
|
+
floor: import("typed-function").TypedFunction;
|
|
89
|
+
ceil: import("typed-function").TypedFunction;
|
|
90
|
+
fix: import("typed-function").TypedFunction;
|
|
91
|
+
mod: import("typed-function").TypedFunction;
|
|
92
|
+
gcd: import("typed-function").TypedFunction;
|
|
93
|
+
lcm: import("typed-function").TypedFunction;
|
|
94
|
+
xgcd: import("typed-function").TypedFunction;
|
|
95
|
+
sinh: import("typed-function").TypedFunction;
|
|
96
|
+
cosh: import("typed-function").TypedFunction;
|
|
97
|
+
tanh: import("typed-function").TypedFunction;
|
|
98
|
+
equal: import("typed-function").TypedFunction;
|
|
99
|
+
smaller: import("typed-function").TypedFunction;
|
|
100
|
+
larger: import("typed-function").TypedFunction;
|
|
101
|
+
smallerEq: import("typed-function").TypedFunction;
|
|
102
|
+
largerEq: import("typed-function").TypedFunction;
|
|
103
|
+
compare: import("typed-function").TypedFunction;
|
|
104
|
+
dot: import("typed-function").TypedFunction;
|
|
105
|
+
matmul: typeof import("./arithmetic.js").matmul;
|
|
106
|
+
transpose: typeof import("./arithmetic.js").transpose;
|
|
107
|
+
matvec: typeof import("./arithmetic.js").matvec;
|
|
108
|
+
outer: typeof import("./arithmetic.js").outer;
|
|
109
|
+
initializePool: typeof import("./arithmetic.js").initializePool;
|
|
110
|
+
terminatePool: typeof import("./arithmetic.js").terminatePool;
|
|
111
|
+
shouldParallelize: typeof import("./arithmetic.js").shouldParallelize;
|
|
112
|
+
getComputePool: typeof import("./arithmetic.js").getComputePool;
|
|
113
|
+
sin: import("typed-function").TypedFunction;
|
|
114
|
+
cos: import("typed-function").TypedFunction;
|
|
115
|
+
tan: import("typed-function").TypedFunction;
|
|
116
|
+
csc: import("typed-function").TypedFunction;
|
|
117
|
+
sec: import("typed-function").TypedFunction;
|
|
118
|
+
cot: import("typed-function").TypedFunction;
|
|
119
|
+
asin: import("typed-function").TypedFunction;
|
|
120
|
+
acos: import("typed-function").TypedFunction;
|
|
121
|
+
atan: import("typed-function").TypedFunction;
|
|
122
|
+
atan2: import("typed-function").TypedFunction;
|
|
123
|
+
acsc: import("typed-function").TypedFunction;
|
|
124
|
+
asec: import("typed-function").TypedFunction;
|
|
125
|
+
acot: import("typed-function").TypedFunction;
|
|
126
|
+
asinh: import("typed-function").TypedFunction;
|
|
127
|
+
acosh: import("typed-function").TypedFunction;
|
|
128
|
+
atanh: import("typed-function").TypedFunction;
|
|
129
|
+
toRadians: import("typed-function").TypedFunction;
|
|
130
|
+
toDegrees: import("typed-function").TypedFunction;
|
|
131
|
+
hypot: import("typed-function").TypedFunction;
|
|
132
|
+
sum: import("typed-function").TypedFunction;
|
|
133
|
+
mean: import("typed-function").TypedFunction;
|
|
134
|
+
variance: import("typed-function").TypedFunction;
|
|
135
|
+
std: import("typed-function").TypedFunction;
|
|
136
|
+
min: import("typed-function").TypedFunction;
|
|
137
|
+
max: import("typed-function").TypedFunction;
|
|
138
|
+
minMax: import("typed-function").TypedFunction;
|
|
139
|
+
median: import("typed-function").TypedFunction;
|
|
140
|
+
mode: import("typed-function").TypedFunction;
|
|
141
|
+
prod: import("typed-function").TypedFunction;
|
|
142
|
+
norm: import("typed-function").TypedFunction;
|
|
143
|
+
distance: import("typed-function").TypedFunction;
|
|
144
|
+
corr: import("typed-function").TypedFunction;
|
|
145
|
+
mad: import("typed-function").TypedFunction;
|
|
146
|
+
cumsum: import("typed-function").TypedFunction;
|
|
147
|
+
quantile: import("typed-function").TypedFunction;
|
|
148
|
+
percentile: typeof import("./statistics.js").parallelStatPercentile;
|
|
149
|
+
histogram: import("typed-function").TypedFunction;
|
|
150
|
+
quickSelect: typeof import("./statistics.js").quickSelect;
|
|
151
|
+
medianSelect: typeof import("./statistics.js").medianSelect;
|
|
152
|
+
minSelect: typeof import("./statistics.js").minSelect;
|
|
153
|
+
maxSelect: typeof import("./statistics.js").maxSelect;
|
|
154
|
+
fft: import("typed-function").TypedFunction;
|
|
155
|
+
ifft: import("typed-function").TypedFunction;
|
|
156
|
+
fftMagnitude: import("typed-function").TypedFunction;
|
|
157
|
+
fftPower: import("typed-function").TypedFunction;
|
|
158
|
+
conv: import("typed-function").TypedFunction;
|
|
159
|
+
xcorr: import("typed-function").TypedFunction;
|
|
160
|
+
autocorr: import("typed-function").TypedFunction;
|
|
161
|
+
crossCorrelation: typeof import("./signal.js").crossCorrelation;
|
|
162
|
+
autoCorrelation: typeof import("./signal.js").autoCorrelation;
|
|
163
|
+
groupDelay: typeof import("./signal.js").groupDelay;
|
|
164
|
+
unwrapPhase: typeof import("./signal.js").unwrapPhase;
|
|
165
|
+
dct: typeof import("./signal.js").dct;
|
|
166
|
+
idct: typeof import("./signal.js").idct;
|
|
167
|
+
dst: typeof import("./signal.js").dst;
|
|
168
|
+
idst: typeof import("./signal.js").idst;
|
|
169
|
+
dwt: typeof import("./signal.js").dwt;
|
|
170
|
+
fft2d: typeof import("./signal.js").fft2d;
|
|
171
|
+
fourier: typeof import("./signal.js").fourier;
|
|
172
|
+
invFourier: typeof import("./signal.js").invFourier;
|
|
173
|
+
hilbertTransform: typeof import("./signal.js").hilbertTransform;
|
|
174
|
+
spectrogram: typeof import("./signal.js").spectrogram;
|
|
175
|
+
periodogram: typeof import("./signal.js").periodogram;
|
|
176
|
+
lowpassFilter: typeof import("./signal.js").lowpassFilter;
|
|
177
|
+
highpassFilter: typeof import("./signal.js").highpassFilter;
|
|
178
|
+
bandpassFilter: typeof import("./signal.js").bandpassFilter;
|
|
179
|
+
resample: typeof import("./signal.js").resample;
|
|
180
|
+
medfilt: typeof import("./signal.js").medfilt;
|
|
181
|
+
windowFunction: typeof import("./signal.js").windowFunction;
|
|
182
|
+
convolve: typeof import("./signal.js").convolve;
|
|
183
|
+
correlate: typeof import("./signal.js").correlate;
|
|
184
|
+
welchPSD: typeof import("./signal.js").welchPSD;
|
|
185
|
+
bartlettPSD: typeof import("./signal.js").bartlettPSD;
|
|
186
|
+
multiTaperPSD: typeof import("./signal.js").multiTaperPSD;
|
|
187
|
+
goertzel: typeof import("./signal.js").goertzel;
|
|
188
|
+
chirpZTransform: typeof import("./signal.js").chirpZTransform;
|
|
189
|
+
applyWindow: typeof import("../wasm/signal/wasm-bridge.js").applyWindowDispatch;
|
|
119
190
|
erfc: import("typed-function").TypedFunction;
|
|
120
191
|
lgamma: import("typed-function").TypedFunction;
|
|
121
192
|
beta: import("typed-function").TypedFunction;
|
|
@@ -154,6 +225,58 @@ export declare const typedFunctions: {
|
|
|
154
225
|
ellipticF: import("typed-function").TypedFunction;
|
|
155
226
|
ellipticEIncomplete: import("typed-function").TypedFunction;
|
|
156
227
|
ellipticPi: import("typed-function").TypedFunction;
|
|
228
|
+
normalPDF: import("typed-function").TypedFunction;
|
|
229
|
+
normalCDF: import("typed-function").TypedFunction;
|
|
230
|
+
exponentialPDF: import("typed-function").TypedFunction;
|
|
231
|
+
exponentialCDF: import("typed-function").TypedFunction;
|
|
232
|
+
poissonPMF: import("typed-function").TypedFunction;
|
|
233
|
+
binomialPMF: import("typed-function").TypedFunction;
|
|
234
|
+
geometricPMF: import("typed-function").TypedFunction;
|
|
235
|
+
bernoulliPMF: import("typed-function").TypedFunction;
|
|
236
|
+
entropy: import("typed-function").TypedFunction;
|
|
237
|
+
jsDivergence: import("typed-function").TypedFunction;
|
|
238
|
+
betaPDF: import("typed-function").TypedFunction;
|
|
239
|
+
gammaPDF: import("typed-function").TypedFunction;
|
|
240
|
+
studentTPDF: import("typed-function").TypedFunction;
|
|
241
|
+
noncentralChi2PDF: import("typed-function").TypedFunction;
|
|
242
|
+
polyval: typeof import("./algebra.js").polyval;
|
|
243
|
+
polyadd: typeof import("./algebra.js").polyadd;
|
|
244
|
+
polymul: typeof import("./algebra.js").polymul;
|
|
245
|
+
polyder: typeof import("./algebra.js").polyder;
|
|
246
|
+
polynomialGCD: typeof import("./algebra.js").polynomialGCD;
|
|
247
|
+
polynomialLCM: typeof import("./algebra.js").polynomialLCM;
|
|
248
|
+
polynomialQuotient: typeof import("./algebra.js").polynomialQuotient;
|
|
249
|
+
polynomialRemainder: typeof import("./algebra.js").polynomialRemainder;
|
|
250
|
+
degree: typeof import("./algebra.js").degree;
|
|
251
|
+
coefficientList: typeof import("./algebra.js").coefficientList;
|
|
252
|
+
discriminant: typeof import("./algebra.js").discriminant;
|
|
253
|
+
differences: typeof import("./algebra.js").differences;
|
|
254
|
+
expand: typeof import("./algebra.js").expand;
|
|
255
|
+
factor: typeof import("./algebra.js").factor;
|
|
256
|
+
collect: typeof import("./algebra.js").collect;
|
|
257
|
+
substitute: typeof import("./algebra.js").substitute;
|
|
258
|
+
variables: typeof import("./algebra.js").variables;
|
|
259
|
+
cancel: typeof import("./algebra.js").cancel;
|
|
260
|
+
together: typeof import("./algebra.js").together;
|
|
261
|
+
apart: typeof import("./algebra.js").apart;
|
|
262
|
+
trigExpand: typeof import("./algebra.js").trigExpand;
|
|
263
|
+
trigReduce: typeof import("./algebra.js").trigReduce;
|
|
264
|
+
trigToExp: typeof import("./algebra.js").trigToExp;
|
|
265
|
+
expToTrig: typeof import("./algebra.js").expToTrig;
|
|
266
|
+
tangentLine: typeof import("./algebra.js").tangentLine;
|
|
267
|
+
reduce: typeof import("./algebra.js").reduce;
|
|
268
|
+
combine: typeof import("./algebra.js").combine;
|
|
269
|
+
complexExpand: typeof import("./algebra.js").complexExpand;
|
|
270
|
+
normalForm: typeof import("./algebra.js").normalForm;
|
|
271
|
+
powerExpand: typeof import("./algebra.js").powerExpand;
|
|
272
|
+
fullSimplify: typeof import("./algebra.js").fullSimplify;
|
|
273
|
+
element: typeof import("./algebra.js").element;
|
|
274
|
+
eliminate: typeof import("./algebra.js").eliminate;
|
|
275
|
+
symbolicPartialDerivative: typeof import("./algebra.js").symbolicPartialDerivative;
|
|
276
|
+
functionExpand: typeof import("./algebra.js").functionExpand;
|
|
277
|
+
resultant: typeof import("./algebra.js").resultant;
|
|
278
|
+
to: import("typed-function").TypedFunction;
|
|
279
|
+
toBest: import("typed-function").TypedFunction;
|
|
157
280
|
fibonacci: import("typed-function").TypedFunction;
|
|
158
281
|
lucas: import("typed-function").TypedFunction;
|
|
159
282
|
doubleFactorial: import("typed-function").TypedFunction;
|
|
@@ -175,128 +298,5 @@ export declare const typedFunctions: {
|
|
|
175
298
|
partitions: import("typed-function").TypedFunction;
|
|
176
299
|
harmonicNumber: import("typed-function").TypedFunction;
|
|
177
300
|
integerDigits: import("typed-function").TypedFunction;
|
|
178
|
-
fft: import("typed-function").TypedFunction;
|
|
179
|
-
ifft: import("typed-function").TypedFunction;
|
|
180
|
-
fftMagnitude: import("typed-function").TypedFunction;
|
|
181
|
-
fftPower: import("typed-function").TypedFunction;
|
|
182
|
-
conv: import("typed-function").TypedFunction;
|
|
183
|
-
xcorr: import("typed-function").TypedFunction;
|
|
184
|
-
autocorr: import("typed-function").TypedFunction;
|
|
185
|
-
crossCorrelation: typeof import("./signal.js").crossCorrelation;
|
|
186
|
-
autoCorrelation: typeof import("./signal.js").autoCorrelation;
|
|
187
|
-
groupDelay: typeof import("./signal.js").groupDelay;
|
|
188
|
-
unwrapPhase: typeof import("./signal.js").unwrapPhase;
|
|
189
|
-
dct: typeof import("./signal.js").dct;
|
|
190
|
-
idct: typeof import("./signal.js").idct;
|
|
191
|
-
dst: typeof import("./signal.js").dst;
|
|
192
|
-
idst: typeof import("./signal.js").idst;
|
|
193
|
-
dwt: typeof import("./signal.js").dwt;
|
|
194
|
-
fft2d: typeof import("./signal.js").fft2d;
|
|
195
|
-
fourier: typeof import("./signal.js").fourier;
|
|
196
|
-
invFourier: typeof import("./signal.js").invFourier;
|
|
197
|
-
hilbertTransform: typeof import("./signal.js").hilbertTransform;
|
|
198
|
-
spectrogram: typeof import("./signal.js").spectrogram;
|
|
199
|
-
periodogram: typeof import("./signal.js").periodogram;
|
|
200
|
-
lowpassFilter: typeof import("./signal.js").lowpassFilter;
|
|
201
|
-
highpassFilter: typeof import("./signal.js").highpassFilter;
|
|
202
|
-
bandpassFilter: typeof import("./signal.js").bandpassFilter;
|
|
203
|
-
resample: typeof import("./signal.js").resample;
|
|
204
|
-
medfilt: typeof import("./signal.js").medfilt;
|
|
205
|
-
windowFunction: typeof import("./signal.js").windowFunction;
|
|
206
|
-
convolve: typeof import("./signal.js").convolve;
|
|
207
|
-
correlate: typeof import("./signal.js").correlate;
|
|
208
|
-
welchPSD: typeof import("./signal.js").welchPSD;
|
|
209
|
-
bartlettPSD: typeof import("./signal.js").bartlettPSD;
|
|
210
|
-
multiTaperPSD: typeof import("./signal.js").multiTaperPSD;
|
|
211
|
-
goertzel: typeof import("./signal.js").goertzel;
|
|
212
|
-
chirpZTransform: typeof import("./signal.js").chirpZTransform;
|
|
213
|
-
applyWindow: typeof import("../wasm/signal/wasm-bridge.js").applyWindowDispatch;
|
|
214
|
-
sum: import("typed-function").TypedFunction;
|
|
215
|
-
mean: import("typed-function").TypedFunction;
|
|
216
|
-
variance: import("typed-function").TypedFunction;
|
|
217
|
-
std: import("typed-function").TypedFunction;
|
|
218
|
-
min: import("typed-function").TypedFunction;
|
|
219
|
-
max: import("typed-function").TypedFunction;
|
|
220
|
-
minMax: import("typed-function").TypedFunction;
|
|
221
|
-
median: import("typed-function").TypedFunction;
|
|
222
|
-
mode: import("typed-function").TypedFunction;
|
|
223
|
-
prod: import("typed-function").TypedFunction;
|
|
224
|
-
norm: import("typed-function").TypedFunction;
|
|
225
|
-
distance: import("typed-function").TypedFunction;
|
|
226
|
-
corr: import("typed-function").TypedFunction;
|
|
227
|
-
mad: import("typed-function").TypedFunction;
|
|
228
|
-
cumsum: import("typed-function").TypedFunction;
|
|
229
|
-
quantile: import("typed-function").TypedFunction;
|
|
230
|
-
percentile: typeof import("./statistics.js").parallelStatPercentile;
|
|
231
|
-
histogram: import("typed-function").TypedFunction;
|
|
232
|
-
quickSelect: typeof import("./statistics.js").quickSelect;
|
|
233
|
-
medianSelect: typeof import("./statistics.js").medianSelect;
|
|
234
|
-
minSelect: typeof import("./statistics.js").minSelect;
|
|
235
|
-
maxSelect: typeof import("./statistics.js").maxSelect;
|
|
236
|
-
sin: import("typed-function").TypedFunction;
|
|
237
|
-
cos: import("typed-function").TypedFunction;
|
|
238
|
-
tan: import("typed-function").TypedFunction;
|
|
239
|
-
csc: import("typed-function").TypedFunction;
|
|
240
|
-
sec: import("typed-function").TypedFunction;
|
|
241
|
-
cot: import("typed-function").TypedFunction;
|
|
242
|
-
asin: import("typed-function").TypedFunction;
|
|
243
|
-
acos: import("typed-function").TypedFunction;
|
|
244
|
-
atan: import("typed-function").TypedFunction;
|
|
245
|
-
atan2: import("typed-function").TypedFunction;
|
|
246
|
-
acsc: import("typed-function").TypedFunction;
|
|
247
|
-
asec: import("typed-function").TypedFunction;
|
|
248
|
-
acot: import("typed-function").TypedFunction;
|
|
249
|
-
asinh: import("typed-function").TypedFunction;
|
|
250
|
-
acosh: import("typed-function").TypedFunction;
|
|
251
|
-
atanh: import("typed-function").TypedFunction;
|
|
252
|
-
toRadians: import("typed-function").TypedFunction;
|
|
253
|
-
toDegrees: import("typed-function").TypedFunction;
|
|
254
|
-
hypot: import("typed-function").TypedFunction;
|
|
255
|
-
add: import("typed-function").TypedFunction;
|
|
256
|
-
subtract: import("typed-function").TypedFunction;
|
|
257
|
-
multiply: import("typed-function").TypedFunction;
|
|
258
|
-
divide: import("typed-function").TypedFunction;
|
|
259
|
-
unaryMinus: import("typed-function").TypedFunction;
|
|
260
|
-
unaryPlus: import("typed-function").TypedFunction;
|
|
261
|
-
abs: import("typed-function").TypedFunction;
|
|
262
|
-
sign: import("typed-function").TypedFunction;
|
|
263
|
-
pow: import("typed-function").TypedFunction;
|
|
264
|
-
sqrt: import("typed-function").TypedFunction;
|
|
265
|
-
square: import("typed-function").TypedFunction;
|
|
266
|
-
cube: import("typed-function").TypedFunction;
|
|
267
|
-
cbrt: import("typed-function").TypedFunction;
|
|
268
|
-
nthRoot: import("typed-function").TypedFunction;
|
|
269
|
-
exp: import("typed-function").TypedFunction;
|
|
270
|
-
log: import("typed-function").TypedFunction;
|
|
271
|
-
log10: import("typed-function").TypedFunction;
|
|
272
|
-
log2: import("typed-function").TypedFunction;
|
|
273
|
-
log1p: import("typed-function").TypedFunction;
|
|
274
|
-
expm1: import("typed-function").TypedFunction;
|
|
275
|
-
round: import("typed-function").TypedFunction;
|
|
276
|
-
floor: import("typed-function").TypedFunction;
|
|
277
|
-
ceil: import("typed-function").TypedFunction;
|
|
278
|
-
fix: import("typed-function").TypedFunction;
|
|
279
|
-
mod: import("typed-function").TypedFunction;
|
|
280
|
-
gcd: import("typed-function").TypedFunction;
|
|
281
|
-
lcm: import("typed-function").TypedFunction;
|
|
282
|
-
xgcd: import("typed-function").TypedFunction;
|
|
283
|
-
sinh: import("typed-function").TypedFunction;
|
|
284
|
-
cosh: import("typed-function").TypedFunction;
|
|
285
|
-
tanh: import("typed-function").TypedFunction;
|
|
286
|
-
equal: import("typed-function").TypedFunction;
|
|
287
|
-
smaller: import("typed-function").TypedFunction;
|
|
288
|
-
larger: import("typed-function").TypedFunction;
|
|
289
|
-
smallerEq: import("typed-function").TypedFunction;
|
|
290
|
-
largerEq: import("typed-function").TypedFunction;
|
|
291
|
-
compare: import("typed-function").TypedFunction;
|
|
292
|
-
dot: import("typed-function").TypedFunction;
|
|
293
|
-
matmul: typeof import("./arithmetic.js").matmul;
|
|
294
|
-
transpose: typeof import("./arithmetic.js").transpose;
|
|
295
|
-
matvec: typeof import("./arithmetic.js").matvec;
|
|
296
|
-
outer: typeof import("./arithmetic.js").outer;
|
|
297
|
-
initializePool: typeof import("./arithmetic.js").initializePool;
|
|
298
|
-
terminatePool: typeof import("./arithmetic.js").terminatePool;
|
|
299
|
-
shouldParallelize: typeof import("./arithmetic.js").shouldParallelize;
|
|
300
|
-
getComputePool: typeof import("./arithmetic.js").getComputePool;
|
|
301
301
|
};
|
|
302
302
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"polynomial-ideal.d.ts","sourceRoot":"","sources":["../../src/typed/polynomial-ideal.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAEH,2EAA2E;AAC3E,MAAM,WAAW,IAAI;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,EAAE,CAAC;CAClB;AAED,kFAAkF;AAClF,MAAM,MAAM,IAAI,GAAG,IAAI,EAAE,CAAC;AAY1B,mEAAmE;AACnE,wBAAgB,SAAS,CAAC,CAAC,EAAE,IAAI,GAAG,IAAI,CAevC;AAED,wBAAgB,OAAO,CAAC,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,IAAI,GAAG,IAAI,CAE9C;AAED,wBAAgB,OAAO,CAAC,CAAC,EAAE,IAAI,GAAG,IAAI,CAMrC;AAED,wBAAgB,OAAO,CAAC,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,IAAI,GAAG,IAAI,CAE9C;AAED,wBAAgB,OAAO,CAAC,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,IAAI,GAAG,IAAI,CAe9C;AA0BD;;;;;GAKG;AACH,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,IAAI,CAgJrE;AAmBD;;;GAGG;AACH,qBAAa,gBAAgB;IAC3B,OAAO,CAAC,OAAO,CAAgB;IAC/B,OAAO,CAAC,MAAM,CAAK;
|
|
1
|
+
{"version":3,"file":"polynomial-ideal.d.ts","sourceRoot":"","sources":["../../src/typed/polynomial-ideal.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAEH,2EAA2E;AAC3E,MAAM,WAAW,IAAI;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,EAAE,CAAC;CAClB;AAED,kFAAkF;AAClF,MAAM,MAAM,IAAI,GAAG,IAAI,EAAE,CAAC;AAY1B,mEAAmE;AACnE,wBAAgB,SAAS,CAAC,CAAC,EAAE,IAAI,GAAG,IAAI,CAevC;AAED,wBAAgB,OAAO,CAAC,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,IAAI,GAAG,IAAI,CAE9C;AAED,wBAAgB,OAAO,CAAC,CAAC,EAAE,IAAI,GAAG,IAAI,CAMrC;AAED,wBAAgB,OAAO,CAAC,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,IAAI,GAAG,IAAI,CAE9C;AAED,wBAAgB,OAAO,CAAC,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,IAAI,GAAG,IAAI,CAe9C;AA0BD;;;;;GAKG;AACH,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,IAAI,CAgJrE;AAmBD;;;GAGG;AACH,qBAAa,gBAAgB;IAC3B,OAAO,CAAC,OAAO,CAAgB;IAC/B,OAAO,CAAC,MAAM,CAAK;IAEnB,YAAY,KAAK,EAAE,IAAI,EAAE,EAExB;IAED,MAAM,CAAC,IAAI,EAAE,IAAI,GAAG,IAAI,CAMvB;IAED,IAAI,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG,IAAI,GAAG,SAAS,CAavC;CACF;AAED,gEAAgE;AAChE,wBAAgB,UAAU,CAAC,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,GAAG,gBAAgB,GAAG,IAAI,CA6BtE;AAmCD;;;;GAIG;AACH,wBAAgB,UAAU,CAAC,KAAK,EAAE,IAAI,EAAE,GAAG,IAAI,EAAE,CAoEhD;AAMD,4FAA4F;AAC5F,wBAAgB,YAAY,CAAC,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,MAAM,CAmB5D"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bigint.d.ts","sourceRoot":"","sources":["../../src/utils/bigint.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AACH,wBAAgB,gBAAgB,CAAC,CAAC,EAChC,KAAK,EAAE,MAAM,EACb,SAAS,EAAE,CAAC,CAAC,EAAE,MAAM,KAAK,MAAM,EAChC,MAAM,EAAE;IAAE,WAAW,CAAC,EAAE,OAAO,CAAA;CAAE,EACjC,IAAI,EAAE,CAAC,CAAC,EAAE,MAAM,KAAK,CAAC,
|
|
1
|
+
{"version":3,"file":"bigint.d.ts","sourceRoot":"","sources":["../../src/utils/bigint.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AACH,wBAAgB,gBAAgB,CAAC,CAAC,EAChC,KAAK,EAAE,MAAM,EACb,SAAS,EAAE,CAAC,CAAC,EAAE,MAAM,KAAK,MAAM,EAChC,MAAM,EAAE;IAAE,WAAW,CAAC,EAAE,OAAO,CAAA;CAAE,EACjC,IAAI,EAAE,CAAC,CAAC,EAAE,MAAM,KAAK,CAAC,OAEF,MAAM,KAAG,MAAM,GAAG,CAAC,CASxC"}
|