@justinelliottcobb/amari-wasm 0.19.1 → 0.22.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 +26 -3
- package/amari_wasm.d.ts +890 -5
- package/amari_wasm.js +2941 -772
- package/amari_wasm_bg.wasm +0 -0
- package/package.json +1 -1
package/amari_wasm.d.ts
CHANGED
|
@@ -178,6 +178,23 @@ export function ripsFromDistances(num_points: number, max_dim: number, distances
|
|
|
178
178
|
* - `evaluator`: Function that takes (x, y) and returns f(x, y)
|
|
179
179
|
*/
|
|
180
180
|
export function findCriticalPoints2D(resolution: number, x_min: number, x_max: number, y_min: number, y_max: number, tolerance: number, values: Float64Array): WasmCriticalPoint[];
|
|
181
|
+
/**
|
|
182
|
+
* Tie-handling policy for branch-sensitive dual-number min/max operations.
|
|
183
|
+
*/
|
|
184
|
+
export enum WasmBranchPolicy {
|
|
185
|
+
/**
|
|
186
|
+
* Preserve the left operand derivative on ties.
|
|
187
|
+
*/
|
|
188
|
+
Left = 0,
|
|
189
|
+
/**
|
|
190
|
+
* Preserve the right operand derivative on ties.
|
|
191
|
+
*/
|
|
192
|
+
Right = 1,
|
|
193
|
+
/**
|
|
194
|
+
* Average derivatives on ties.
|
|
195
|
+
*/
|
|
196
|
+
Average = 2,
|
|
197
|
+
}
|
|
181
198
|
/**
|
|
182
199
|
* Integration methods available in WASM
|
|
183
200
|
*/
|
|
@@ -992,6 +1009,14 @@ export class SchubertBatch {
|
|
|
992
1009
|
export class TropicalBatch {
|
|
993
1010
|
private constructor();
|
|
994
1011
|
free(): void;
|
|
1012
|
+
/**
|
|
1013
|
+
* Fold values with tropical addition (`max`).
|
|
1014
|
+
*/
|
|
1015
|
+
static foldOplus(values: Float64Array): number;
|
|
1016
|
+
/**
|
|
1017
|
+
* Fold values with tropical multiplication (`+`).
|
|
1018
|
+
*/
|
|
1019
|
+
static foldOtimes(values: Float64Array): number;
|
|
995
1020
|
/**
|
|
996
1021
|
* Convert array of log probabilities to tropical numbers and find maximum
|
|
997
1022
|
*/
|
|
@@ -1430,6 +1455,108 @@ export class WasmCapability {
|
|
|
1430
1455
|
*/
|
|
1431
1456
|
requires(required_id: string): WasmCapability;
|
|
1432
1457
|
}
|
|
1458
|
+
/**
|
|
1459
|
+
* Arena-backed short combinatorial game engine for WebAssembly.
|
|
1460
|
+
*/
|
|
1461
|
+
export class WasmCgtArena {
|
|
1462
|
+
free(): void;
|
|
1463
|
+
/**
|
|
1464
|
+
* Return whether two games are equivalent.
|
|
1465
|
+
*/
|
|
1466
|
+
equivalent(lhs: WasmGameId, rhs: WasmGameId): boolean;
|
|
1467
|
+
/**
|
|
1468
|
+
* Return whether a game is numeric.
|
|
1469
|
+
*/
|
|
1470
|
+
isNumeric(game: WasmGameId): boolean;
|
|
1471
|
+
/**
|
|
1472
|
+
* Number of interned arena nodes.
|
|
1473
|
+
*/
|
|
1474
|
+
nodeCount(): number;
|
|
1475
|
+
/**
|
|
1476
|
+
* Format a game as recursive cut notation.
|
|
1477
|
+
*/
|
|
1478
|
+
formatGame(game: WasmGameId): string;
|
|
1479
|
+
/**
|
|
1480
|
+
* Return whether a game is impartial.
|
|
1481
|
+
*/
|
|
1482
|
+
isImpartial(game: WasmGameId): boolean;
|
|
1483
|
+
/**
|
|
1484
|
+
* Format a game's canonical representative.
|
|
1485
|
+
*/
|
|
1486
|
+
formatCanonicalGame(game: WasmGameId): string;
|
|
1487
|
+
/**
|
|
1488
|
+
* Add two short games.
|
|
1489
|
+
*/
|
|
1490
|
+
add(lhs: WasmGameId, rhs: WasmGameId): WasmGameId;
|
|
1491
|
+
/**
|
|
1492
|
+
* Build a one-left, one-right cut `{left | right}`.
|
|
1493
|
+
*/
|
|
1494
|
+
cut(left: WasmGameId, right: WasmGameId): WasmGameId;
|
|
1495
|
+
/**
|
|
1496
|
+
* Negate a short game.
|
|
1497
|
+
*/
|
|
1498
|
+
neg(game: WasmGameId): WasmGameId;
|
|
1499
|
+
/**
|
|
1500
|
+
* Create an empty arena with the zero game interned lazily.
|
|
1501
|
+
*/
|
|
1502
|
+
constructor();
|
|
1503
|
+
/**
|
|
1504
|
+
* Return the game `1 = {0 | }`.
|
|
1505
|
+
*/
|
|
1506
|
+
one(): WasmGameId;
|
|
1507
|
+
/**
|
|
1508
|
+
* Subtract two short games.
|
|
1509
|
+
*/
|
|
1510
|
+
sub(lhs: WasmGameId, rhs: WasmGameId): WasmGameId;
|
|
1511
|
+
/**
|
|
1512
|
+
* Return the star game `{0 | 0}`.
|
|
1513
|
+
*/
|
|
1514
|
+
star(): WasmGameId;
|
|
1515
|
+
/**
|
|
1516
|
+
* Return the zero game `{ | }`.
|
|
1517
|
+
*/
|
|
1518
|
+
zero(): WasmGameId;
|
|
1519
|
+
/**
|
|
1520
|
+
* Compute the Grundy nimber of an impartial game.
|
|
1521
|
+
*/
|
|
1522
|
+
grundy(game: WasmGameId): number;
|
|
1523
|
+
/**
|
|
1524
|
+
* Compare two games in the partizan order.
|
|
1525
|
+
*/
|
|
1526
|
+
compare(lhs: WasmGameId, rhs: WasmGameId): string;
|
|
1527
|
+
/**
|
|
1528
|
+
* Inspect canonical, numeric, impartial, outcome, and size metadata.
|
|
1529
|
+
*/
|
|
1530
|
+
inspect(game: WasmGameId): WasmGameInspection;
|
|
1531
|
+
/**
|
|
1532
|
+
* Return the normal-play outcome class.
|
|
1533
|
+
*/
|
|
1534
|
+
outcome(game: WasmGameId): string;
|
|
1535
|
+
/**
|
|
1536
|
+
* Return the game's birthday.
|
|
1537
|
+
*/
|
|
1538
|
+
birthday(game: WasmGameId): number;
|
|
1539
|
+
/**
|
|
1540
|
+
* Build a one-left-option game `{left | }`.
|
|
1541
|
+
*/
|
|
1542
|
+
leftCut(left: WasmGameId): WasmGameId;
|
|
1543
|
+
/**
|
|
1544
|
+
* Build a Nim heap of the requested size.
|
|
1545
|
+
*/
|
|
1546
|
+
nimHeap(size: number): WasmGameId;
|
|
1547
|
+
/**
|
|
1548
|
+
* Canonicalize a game and return the canonical representative handle.
|
|
1549
|
+
*/
|
|
1550
|
+
canonical(game: WasmGameId): WasmGameId;
|
|
1551
|
+
/**
|
|
1552
|
+
* Return the game `-1 = {| 0}`.
|
|
1553
|
+
*/
|
|
1554
|
+
minusOne(): WasmGameId;
|
|
1555
|
+
/**
|
|
1556
|
+
* Build a one-right-option game `{ | right}`.
|
|
1557
|
+
*/
|
|
1558
|
+
rightCut(right: WasmGameId): WasmGameId;
|
|
1559
|
+
}
|
|
1433
1560
|
/**
|
|
1434
1561
|
* WASM wrapper for Chow classes in intersection theory
|
|
1435
1562
|
*/
|
|
@@ -1575,6 +1702,14 @@ export class WasmCriticalPoint {
|
|
|
1575
1702
|
*/
|
|
1576
1703
|
export class WasmDualNumber {
|
|
1577
1704
|
free(): void;
|
|
1705
|
+
/**
|
|
1706
|
+
* Maximum with explicit derivative tie handling.
|
|
1707
|
+
*/
|
|
1708
|
+
maxByPolicy(other: WasmDualNumber, policy: WasmBranchPolicy): WasmDualNumber;
|
|
1709
|
+
/**
|
|
1710
|
+
* Minimum with explicit derivative tie handling.
|
|
1711
|
+
*/
|
|
1712
|
+
minByPolicy(other: WasmDualNumber, policy: WasmBranchPolicy): WasmDualNumber;
|
|
1578
1713
|
/**
|
|
1579
1714
|
* Natural logarithm
|
|
1580
1715
|
*/
|
|
@@ -1715,6 +1850,84 @@ export class WasmDuallyFlatManifold {
|
|
|
1715
1850
|
*/
|
|
1716
1851
|
constructor(dimension: number, alpha: number);
|
|
1717
1852
|
}
|
|
1853
|
+
/**
|
|
1854
|
+
* Exact dyadic rational `numerator / 2^exponent` for short surreal values.
|
|
1855
|
+
*/
|
|
1856
|
+
export class WasmDyadic {
|
|
1857
|
+
free(): void;
|
|
1858
|
+
/**
|
|
1859
|
+
* Checked division; fails if the quotient leaves the dyadic layer.
|
|
1860
|
+
*/
|
|
1861
|
+
checkedDiv(rhs: WasmDyadic): WasmDyadic;
|
|
1862
|
+
/**
|
|
1863
|
+
* Return whether the dyadic is negative.
|
|
1864
|
+
*/
|
|
1865
|
+
isNegative(): boolean;
|
|
1866
|
+
/**
|
|
1867
|
+
* Return whether the dyadic is positive.
|
|
1868
|
+
*/
|
|
1869
|
+
isPositive(): boolean;
|
|
1870
|
+
/**
|
|
1871
|
+
* Create a dyadic integer.
|
|
1872
|
+
*/
|
|
1873
|
+
static fromInteger(value: number): WasmDyadic;
|
|
1874
|
+
/**
|
|
1875
|
+
* Numerator as a base-10 string.
|
|
1876
|
+
*/
|
|
1877
|
+
numeratorString(): string;
|
|
1878
|
+
/**
|
|
1879
|
+
* Checked reciprocal within the dyadic short-surreal layer.
|
|
1880
|
+
*/
|
|
1881
|
+
checkedReciprocal(): WasmDyadic;
|
|
1882
|
+
/**
|
|
1883
|
+
* Absolute value.
|
|
1884
|
+
*/
|
|
1885
|
+
abs(): WasmDyadic;
|
|
1886
|
+
/**
|
|
1887
|
+
* Add two dyadics exactly.
|
|
1888
|
+
*/
|
|
1889
|
+
add(rhs: WasmDyadic): WasmDyadic;
|
|
1890
|
+
/**
|
|
1891
|
+
* Multiply two dyadics exactly.
|
|
1892
|
+
*/
|
|
1893
|
+
mul(rhs: WasmDyadic): WasmDyadic;
|
|
1894
|
+
/**
|
|
1895
|
+
* Negate the dyadic.
|
|
1896
|
+
*/
|
|
1897
|
+
neg(): WasmDyadic;
|
|
1898
|
+
/**
|
|
1899
|
+
* Create and normalize a dyadic rational `numerator / 2^exponent`.
|
|
1900
|
+
*/
|
|
1901
|
+
constructor(numerator: number, exponent: number);
|
|
1902
|
+
/**
|
|
1903
|
+
* Return one.
|
|
1904
|
+
*/
|
|
1905
|
+
static one(): WasmDyadic;
|
|
1906
|
+
/**
|
|
1907
|
+
* Subtract two dyadics exactly.
|
|
1908
|
+
*/
|
|
1909
|
+
sub(rhs: WasmDyadic): WasmDyadic;
|
|
1910
|
+
/**
|
|
1911
|
+
* Return the sign as `negative`, `zero`, or `positive`.
|
|
1912
|
+
*/
|
|
1913
|
+
sign(): string;
|
|
1914
|
+
/**
|
|
1915
|
+
* Return zero.
|
|
1916
|
+
*/
|
|
1917
|
+
static zero(): WasmDyadic;
|
|
1918
|
+
/**
|
|
1919
|
+
* Format as an integer or rational string.
|
|
1920
|
+
*/
|
|
1921
|
+
format(): string;
|
|
1922
|
+
/**
|
|
1923
|
+
* Return whether the dyadic is zero.
|
|
1924
|
+
*/
|
|
1925
|
+
isZero(): boolean;
|
|
1926
|
+
/**
|
|
1927
|
+
* Power-of-two denominator exponent.
|
|
1928
|
+
*/
|
|
1929
|
+
exponent(): number;
|
|
1930
|
+
}
|
|
1718
1931
|
/**
|
|
1719
1932
|
* WASM wrapper for equivariant localization on Grassmannians
|
|
1720
1933
|
*/
|
|
@@ -2032,6 +2245,64 @@ export class WasmGF2Vector {
|
|
|
2032
2245
|
*/
|
|
2033
2246
|
static fromBits(bits: Uint8Array): WasmGF2Vector;
|
|
2034
2247
|
}
|
|
2248
|
+
/**
|
|
2249
|
+
* Opaque handle for a short combinatorial game stored in a `WasmCgtArena`.
|
|
2250
|
+
*/
|
|
2251
|
+
export class WasmGameId {
|
|
2252
|
+
private constructor();
|
|
2253
|
+
free(): void;
|
|
2254
|
+
/**
|
|
2255
|
+
* Returns whether two game handles point at the same arena-local game.
|
|
2256
|
+
*/
|
|
2257
|
+
same(other: WasmGameId): boolean;
|
|
2258
|
+
}
|
|
2259
|
+
/**
|
|
2260
|
+
* Inspection summary for a short combinatorial game.
|
|
2261
|
+
*/
|
|
2262
|
+
export class WasmGameInspection {
|
|
2263
|
+
private constructor();
|
|
2264
|
+
free(): void;
|
|
2265
|
+
/**
|
|
2266
|
+
* Whether the game is numeric.
|
|
2267
|
+
*/
|
|
2268
|
+
isNumeric(): boolean;
|
|
2269
|
+
/**
|
|
2270
|
+
* Whether the game is partizan.
|
|
2271
|
+
*/
|
|
2272
|
+
isPartizan(): boolean;
|
|
2273
|
+
/**
|
|
2274
|
+
* Whether the game already is its canonical representative.
|
|
2275
|
+
*/
|
|
2276
|
+
isCanonical(): boolean;
|
|
2277
|
+
/**
|
|
2278
|
+
* Whether the game is impartial.
|
|
2279
|
+
*/
|
|
2280
|
+
isImpartial(): boolean;
|
|
2281
|
+
/**
|
|
2282
|
+
* Canonical structural form as recursive cut notation.
|
|
2283
|
+
*/
|
|
2284
|
+
canonicalForm(): string;
|
|
2285
|
+
/**
|
|
2286
|
+
* Whether the game is non-numeric.
|
|
2287
|
+
*/
|
|
2288
|
+
isNonNumeric(): boolean;
|
|
2289
|
+
/**
|
|
2290
|
+
* Number of reachable arena nodes in the game DAG.
|
|
2291
|
+
*/
|
|
2292
|
+
reachableNodeCount(): number;
|
|
2293
|
+
/**
|
|
2294
|
+
* Normal-play outcome class.
|
|
2295
|
+
*/
|
|
2296
|
+
outcome(): string;
|
|
2297
|
+
/**
|
|
2298
|
+
* Birthday of the inspected game.
|
|
2299
|
+
*/
|
|
2300
|
+
birthday(): number;
|
|
2301
|
+
/**
|
|
2302
|
+
* Canonical representative handle.
|
|
2303
|
+
*/
|
|
2304
|
+
canonical(): WasmGameId;
|
|
2305
|
+
}
|
|
2035
2306
|
/**
|
|
2036
2307
|
* WASM wrapper for Gaussian distribution on Cl(3,0,0) multivector space
|
|
2037
2308
|
*
|
|
@@ -3021,6 +3292,14 @@ export class WasmMultiDualNumber {
|
|
|
3021
3292
|
* Get number of variables
|
|
3022
3293
|
*/
|
|
3023
3294
|
getNumVars(): number;
|
|
3295
|
+
/**
|
|
3296
|
+
* Maximum with explicit derivative tie handling.
|
|
3297
|
+
*/
|
|
3298
|
+
maxByPolicy(other: WasmMultiDualNumber, policy: WasmBranchPolicy): WasmMultiDualNumber;
|
|
3299
|
+
/**
|
|
3300
|
+
* Minimum with explicit derivative tie handling.
|
|
3301
|
+
*/
|
|
3302
|
+
minByPolicy(other: WasmMultiDualNumber, policy: WasmBranchPolicy): WasmMultiDualNumber;
|
|
3024
3303
|
/**
|
|
3025
3304
|
* Addition
|
|
3026
3305
|
*/
|
|
@@ -3049,6 +3328,10 @@ export class WasmMultiDualNumber {
|
|
|
3049
3328
|
* Create a variable with derivative 1 at the specified index
|
|
3050
3329
|
*/
|
|
3051
3330
|
static variable(value: number, num_vars: number, var_index: number): WasmMultiDualNumber;
|
|
3331
|
+
/**
|
|
3332
|
+
* Create one basis-seeded variable per input coordinate.
|
|
3333
|
+
*/
|
|
3334
|
+
static variables(values: Float64Array): Array<any>;
|
|
3052
3335
|
}
|
|
3053
3336
|
/**
|
|
3054
3337
|
* Simple multi-objective optimizer for WASM
|
|
@@ -3548,6 +3831,154 @@ export class WasmOptimizationUtils {
|
|
|
3548
3831
|
*/
|
|
3549
3832
|
static dominates(objectives1: Float64Array, objectives2: Float64Array): boolean;
|
|
3550
3833
|
}
|
|
3834
|
+
/**
|
|
3835
|
+
* Arena-bound handle for an ordinal below ε₀.
|
|
3836
|
+
*/
|
|
3837
|
+
export class WasmOrdinal {
|
|
3838
|
+
private constructor();
|
|
3839
|
+
free(): void;
|
|
3840
|
+
/**
|
|
3841
|
+
* Raw arena-local ordinal index.
|
|
3842
|
+
*/
|
|
3843
|
+
getIndex(): number;
|
|
3844
|
+
}
|
|
3845
|
+
/**
|
|
3846
|
+
* Arena-backed store for canonical ordinals below ε₀.
|
|
3847
|
+
*/
|
|
3848
|
+
export class WasmOrdinalArena {
|
|
3849
|
+
free(): void;
|
|
3850
|
+
/**
|
|
3851
|
+
* Number of interned ordinal nodes.
|
|
3852
|
+
*/
|
|
3853
|
+
nodeCount(): number;
|
|
3854
|
+
/**
|
|
3855
|
+
* Number of CNF terms.
|
|
3856
|
+
*/
|
|
3857
|
+
termCount(ordinal: WasmOrdinal): number;
|
|
3858
|
+
/**
|
|
3859
|
+
* Select the best of two weights using semiring-style `max`.
|
|
3860
|
+
*/
|
|
3861
|
+
bestWeight2(left: WasmOrdinalWeight, right: WasmOrdinalWeight): WasmOrdinalWeight;
|
|
3862
|
+
/**
|
|
3863
|
+
* Select the best of three weights using semiring-style `max`.
|
|
3864
|
+
*/
|
|
3865
|
+
bestWeight3(first: WasmOrdinalWeight, second: WasmOrdinalWeight, third: WasmOrdinalWeight): WasmOrdinalWeight;
|
|
3866
|
+
/**
|
|
3867
|
+
* Finite value when the ordinal is finite.
|
|
3868
|
+
*/
|
|
3869
|
+
finiteValue(ordinal: WasmOrdinal): number | undefined;
|
|
3870
|
+
/**
|
|
3871
|
+
* Return true if this is a successor ordinal.
|
|
3872
|
+
*/
|
|
3873
|
+
isSuccessor(ordinal: WasmOrdinal): boolean;
|
|
3874
|
+
/**
|
|
3875
|
+
* Semiring-style additive combination (`max`) for ordinal weights.
|
|
3876
|
+
*/
|
|
3877
|
+
oplusWeight(left: WasmOrdinalWeight, right: WasmOrdinalWeight): WasmOrdinalWeight;
|
|
3878
|
+
/**
|
|
3879
|
+
* Format an ordinal weight.
|
|
3880
|
+
*/
|
|
3881
|
+
formatWeight(weight: WasmOrdinalWeight): string;
|
|
3882
|
+
/**
|
|
3883
|
+
* Semiring-style multiplicative composition (ordinal addition) for weights.
|
|
3884
|
+
*/
|
|
3885
|
+
otimesWeight(left: WasmOrdinalWeight, right: WasmOrdinalWeight): WasmOrdinalWeight;
|
|
3886
|
+
/**
|
|
3887
|
+
* Compare two weights: -1 for less, 0 for equal, 1 for greater.
|
|
3888
|
+
*/
|
|
3889
|
+
compareWeight(left: WasmOrdinalWeight, right: WasmOrdinalWeight): number;
|
|
3890
|
+
/**
|
|
3891
|
+
* Format an ordinal in Cantor normal form.
|
|
3892
|
+
*/
|
|
3893
|
+
formatOrdinal(ordinal: WasmOrdinal): string;
|
|
3894
|
+
/**
|
|
3895
|
+
* Compose two weights using ordinal addition with bottom annihilation.
|
|
3896
|
+
*/
|
|
3897
|
+
composeWeight2(left: WasmOrdinalWeight, right: WasmOrdinalWeight): WasmOrdinalWeight;
|
|
3898
|
+
/**
|
|
3899
|
+
* Compose three weights using ordinal addition with bottom annihilation.
|
|
3900
|
+
*/
|
|
3901
|
+
composeWeight3(first: WasmOrdinalWeight, second: WasmOrdinalWeight, third: WasmOrdinalWeight): WasmOrdinalWeight;
|
|
3902
|
+
/**
|
|
3903
|
+
* Build a JavaScript object with ordinal inspection metadata.
|
|
3904
|
+
*/
|
|
3905
|
+
inspectOrdinal(ordinal: WasmOrdinal): any;
|
|
3906
|
+
/**
|
|
3907
|
+
* Return true if the ordinal is zero.
|
|
3908
|
+
*/
|
|
3909
|
+
isZeroOrdinal(ordinal: WasmOrdinal): boolean;
|
|
3910
|
+
/**
|
|
3911
|
+
* Construct a weight from an ordinal.
|
|
3912
|
+
*/
|
|
3913
|
+
weightFromOrdinal(ordinal: WasmOrdinal): WasmOrdinalWeight;
|
|
3914
|
+
/**
|
|
3915
|
+
* Ordinal addition.
|
|
3916
|
+
*/
|
|
3917
|
+
add(left: WasmOrdinal, right: WasmOrdinal): WasmOrdinal;
|
|
3918
|
+
/**
|
|
3919
|
+
* Create an ordinal arena containing zero.
|
|
3920
|
+
*/
|
|
3921
|
+
constructor();
|
|
3922
|
+
/**
|
|
3923
|
+
* Finite ordinal one.
|
|
3924
|
+
*/
|
|
3925
|
+
one(): WasmOrdinal;
|
|
3926
|
+
/**
|
|
3927
|
+
* Structural kind: zero, finite, successor, or limit.
|
|
3928
|
+
*/
|
|
3929
|
+
kind(ordinal: WasmOrdinal): string;
|
|
3930
|
+
/**
|
|
3931
|
+
* Canonical zero ordinal.
|
|
3932
|
+
*/
|
|
3933
|
+
zero(): WasmOrdinal;
|
|
3934
|
+
/**
|
|
3935
|
+
* The ordinal ω.
|
|
3936
|
+
*/
|
|
3937
|
+
omega(): WasmOrdinal;
|
|
3938
|
+
/**
|
|
3939
|
+
* Finite natural ordinal `n`.
|
|
3940
|
+
*/
|
|
3941
|
+
finite(n: number): WasmOrdinal;
|
|
3942
|
+
/**
|
|
3943
|
+
* Compare two ordinals: -1 for less, 0 for equal, 1 for greater.
|
|
3944
|
+
*/
|
|
3945
|
+
compare(left: WasmOrdinal, right: WasmOrdinal): number;
|
|
3946
|
+
/**
|
|
3947
|
+
* Return true if this is a nonzero limit ordinal.
|
|
3948
|
+
*/
|
|
3949
|
+
isLimit(ordinal: WasmOrdinal): boolean;
|
|
3950
|
+
/**
|
|
3951
|
+
* Leading-exponent valuation of a weight, if any.
|
|
3952
|
+
*/
|
|
3953
|
+
valuation(weight: WasmOrdinalWeight): number | undefined;
|
|
3954
|
+
}
|
|
3955
|
+
/**
|
|
3956
|
+
* Bottom-extended ordinal optimization weight.
|
|
3957
|
+
*/
|
|
3958
|
+
export class WasmOrdinalWeight {
|
|
3959
|
+
private constructor();
|
|
3960
|
+
free(): void;
|
|
3961
|
+
/**
|
|
3962
|
+
* Arena-local ordinal index when this weight wraps an ordinal.
|
|
3963
|
+
*/
|
|
3964
|
+
ordinalIndex(): number | undefined;
|
|
3965
|
+
/**
|
|
3966
|
+
* Construct the semiring one element, i.e. ordinal zero.
|
|
3967
|
+
*/
|
|
3968
|
+
static one(): WasmOrdinalWeight;
|
|
3969
|
+
/**
|
|
3970
|
+
* Alias for the semiring zero element.
|
|
3971
|
+
*/
|
|
3972
|
+
static zero(): WasmOrdinalWeight;
|
|
3973
|
+
/**
|
|
3974
|
+
* Construct the bottom element.
|
|
3975
|
+
*/
|
|
3976
|
+
static bottom(): WasmOrdinalWeight;
|
|
3977
|
+
/**
|
|
3978
|
+
* Whether this weight is bottom.
|
|
3979
|
+
*/
|
|
3980
|
+
isBottom(): boolean;
|
|
3981
|
+
}
|
|
3551
3982
|
/**
|
|
3552
3983
|
* Parametric probability density families
|
|
3553
3984
|
*/
|
|
@@ -4033,6 +4464,101 @@ export class WasmSensitivityMap {
|
|
|
4033
4464
|
*/
|
|
4034
4465
|
getTotalSensitivity(): number;
|
|
4035
4466
|
}
|
|
4467
|
+
/**
|
|
4468
|
+
* Exact short surreal value backed by a dyadic rational.
|
|
4469
|
+
*/
|
|
4470
|
+
export class WasmShortSurreal {
|
|
4471
|
+
private constructor();
|
|
4472
|
+
free(): void;
|
|
4473
|
+
/**
|
|
4474
|
+
* Reconstruct this short surreal as a numeric CGT game in the provided arena.
|
|
4475
|
+
*/
|
|
4476
|
+
toGameIn(arena: WasmCgtArena): WasmGameId;
|
|
4477
|
+
/**
|
|
4478
|
+
* Checked division; fails if the quotient leaves the dyadic layer.
|
|
4479
|
+
*/
|
|
4480
|
+
checkedDiv(rhs: WasmShortSurreal): WasmShortSurreal;
|
|
4481
|
+
/**
|
|
4482
|
+
* Create a short surreal from an exact dyadic value.
|
|
4483
|
+
*/
|
|
4484
|
+
static fromDyadic(value: WasmDyadic): WasmShortSurreal;
|
|
4485
|
+
/**
|
|
4486
|
+
* Return whether the value is negative.
|
|
4487
|
+
*/
|
|
4488
|
+
isNegative(): boolean;
|
|
4489
|
+
/**
|
|
4490
|
+
* Return whether the value is positive.
|
|
4491
|
+
*/
|
|
4492
|
+
isPositive(): boolean;
|
|
4493
|
+
/**
|
|
4494
|
+
* Create a short surreal from an integer.
|
|
4495
|
+
*/
|
|
4496
|
+
static fromInteger(value: number): WasmShortSurreal;
|
|
4497
|
+
/**
|
|
4498
|
+
* Whether the value was converted from a CGT game handle.
|
|
4499
|
+
*/
|
|
4500
|
+
hasProvenance(): boolean;
|
|
4501
|
+
/**
|
|
4502
|
+
* Checked reciprocal within the dyadic short-surreal layer.
|
|
4503
|
+
*/
|
|
4504
|
+
checkedReciprocal(): WasmShortSurreal;
|
|
4505
|
+
/**
|
|
4506
|
+
* Absolute value.
|
|
4507
|
+
*/
|
|
4508
|
+
abs(): WasmShortSurreal;
|
|
4509
|
+
/**
|
|
4510
|
+
* Add two short surreals exactly.
|
|
4511
|
+
*/
|
|
4512
|
+
add(rhs: WasmShortSurreal): WasmShortSurreal;
|
|
4513
|
+
/**
|
|
4514
|
+
* Multiply two short surreals exactly.
|
|
4515
|
+
*/
|
|
4516
|
+
mul(rhs: WasmShortSurreal): WasmShortSurreal;
|
|
4517
|
+
/**
|
|
4518
|
+
* Negate the value.
|
|
4519
|
+
*/
|
|
4520
|
+
neg(): WasmShortSurreal;
|
|
4521
|
+
/**
|
|
4522
|
+
* Return one.
|
|
4523
|
+
*/
|
|
4524
|
+
static one(): WasmShortSurreal;
|
|
4525
|
+
/**
|
|
4526
|
+
* Subtract two short surreals exactly.
|
|
4527
|
+
*/
|
|
4528
|
+
sub(rhs: WasmShortSurreal): WasmShortSurreal;
|
|
4529
|
+
/**
|
|
4530
|
+
* Return the sign as `negative`, `zero`, or `positive`.
|
|
4531
|
+
*/
|
|
4532
|
+
sign(): string;
|
|
4533
|
+
/**
|
|
4534
|
+
* Return zero.
|
|
4535
|
+
*/
|
|
4536
|
+
static zero(): WasmShortSurreal;
|
|
4537
|
+
/**
|
|
4538
|
+
* Format as an integer or dyadic rational string.
|
|
4539
|
+
*/
|
|
4540
|
+
format(): string;
|
|
4541
|
+
/**
|
|
4542
|
+
* Compare two short surreal values.
|
|
4543
|
+
*/
|
|
4544
|
+
compare(rhs: WasmShortSurreal): string;
|
|
4545
|
+
/**
|
|
4546
|
+
* Return whether the value is zero.
|
|
4547
|
+
*/
|
|
4548
|
+
isZero(): boolean;
|
|
4549
|
+
/**
|
|
4550
|
+
* Birthday of the short surreal value.
|
|
4551
|
+
*/
|
|
4552
|
+
birthday(): number;
|
|
4553
|
+
/**
|
|
4554
|
+
* Convert a numeric CGT game to a short surreal.
|
|
4555
|
+
*/
|
|
4556
|
+
static fromGame(arena: WasmCgtArena, game: WasmGameId): WasmShortSurreal;
|
|
4557
|
+
/**
|
|
4558
|
+
* Return the exact dyadic value.
|
|
4559
|
+
*/
|
|
4560
|
+
toDyadic(): WasmDyadic;
|
|
4561
|
+
}
|
|
4036
4562
|
/**
|
|
4037
4563
|
* Simple quadratic optimization problem for WASM demonstration
|
|
4038
4564
|
*/
|
|
@@ -4414,6 +4940,195 @@ export class WasmStabilityCondition {
|
|
|
4414
4940
|
*/
|
|
4415
4941
|
isStable(capability: WasmCapability): boolean;
|
|
4416
4942
|
}
|
|
4943
|
+
export class WasmStaticMultiDual2 {
|
|
4944
|
+
free(): void;
|
|
4945
|
+
/**
|
|
4946
|
+
* Get the fixed-size gradient as a JavaScript array-compatible vector.
|
|
4947
|
+
*/
|
|
4948
|
+
getGradient(): Float64Array;
|
|
4949
|
+
/**
|
|
4950
|
+
* Maximum with explicit derivative tie handling.
|
|
4951
|
+
*/
|
|
4952
|
+
maxByPolicy(other: WasmStaticMultiDual2, policy: WasmBranchPolicy): WasmStaticMultiDual2;
|
|
4953
|
+
/**
|
|
4954
|
+
* Minimum with explicit derivative tie handling.
|
|
4955
|
+
*/
|
|
4956
|
+
minByPolicy(other: WasmStaticMultiDual2, policy: WasmBranchPolicy): WasmStaticMultiDual2;
|
|
4957
|
+
/**
|
|
4958
|
+
* Convert to the heap-backed multi-dual wrapper.
|
|
4959
|
+
*/
|
|
4960
|
+
toMultiDual(): WasmMultiDualNumber;
|
|
4961
|
+
/**
|
|
4962
|
+
* Addition.
|
|
4963
|
+
*/
|
|
4964
|
+
add(other: WasmStaticMultiDual2): WasmStaticMultiDual2;
|
|
4965
|
+
/**
|
|
4966
|
+
* Division.
|
|
4967
|
+
*/
|
|
4968
|
+
div(other: WasmStaticMultiDual2): WasmStaticMultiDual2;
|
|
4969
|
+
/**
|
|
4970
|
+
* Multiplication.
|
|
4971
|
+
*/
|
|
4972
|
+
mul(other: WasmStaticMultiDual2): WasmStaticMultiDual2;
|
|
4973
|
+
/**
|
|
4974
|
+
* Negation.
|
|
4975
|
+
*/
|
|
4976
|
+
neg(): WasmStaticMultiDual2;
|
|
4977
|
+
/**
|
|
4978
|
+
* Create a fixed-size multi-dual number from a value and gradient.
|
|
4979
|
+
*/
|
|
4980
|
+
constructor(value: number, gradient: Float64Array);
|
|
4981
|
+
/**
|
|
4982
|
+
* Subtraction.
|
|
4983
|
+
*/
|
|
4984
|
+
sub(other: WasmStaticMultiDual2): WasmStaticMultiDual2;
|
|
4985
|
+
/**
|
|
4986
|
+
* Number of derivative variables.
|
|
4987
|
+
*/
|
|
4988
|
+
nVars(): number;
|
|
4989
|
+
/**
|
|
4990
|
+
* Create a constant with zero gradient.
|
|
4991
|
+
*/
|
|
4992
|
+
static constant(value: number): WasmStaticMultiDual2;
|
|
4993
|
+
/**
|
|
4994
|
+
* Create a basis-seeded variable.
|
|
4995
|
+
*/
|
|
4996
|
+
static variable(value: number, var_index: number): WasmStaticMultiDual2;
|
|
4997
|
+
/**
|
|
4998
|
+
* Get the function value.
|
|
4999
|
+
*/
|
|
5000
|
+
getValue(): number;
|
|
5001
|
+
/**
|
|
5002
|
+
* Create one fixed-size variable per coordinate.
|
|
5003
|
+
*/
|
|
5004
|
+
static variables(values: Float64Array): Array<any>;
|
|
5005
|
+
}
|
|
5006
|
+
export class WasmStaticMultiDual3 {
|
|
5007
|
+
free(): void;
|
|
5008
|
+
/**
|
|
5009
|
+
* Get the fixed-size gradient as a JavaScript array-compatible vector.
|
|
5010
|
+
*/
|
|
5011
|
+
getGradient(): Float64Array;
|
|
5012
|
+
/**
|
|
5013
|
+
* Maximum with explicit derivative tie handling.
|
|
5014
|
+
*/
|
|
5015
|
+
maxByPolicy(other: WasmStaticMultiDual3, policy: WasmBranchPolicy): WasmStaticMultiDual3;
|
|
5016
|
+
/**
|
|
5017
|
+
* Minimum with explicit derivative tie handling.
|
|
5018
|
+
*/
|
|
5019
|
+
minByPolicy(other: WasmStaticMultiDual3, policy: WasmBranchPolicy): WasmStaticMultiDual3;
|
|
5020
|
+
/**
|
|
5021
|
+
* Convert to the heap-backed multi-dual wrapper.
|
|
5022
|
+
*/
|
|
5023
|
+
toMultiDual(): WasmMultiDualNumber;
|
|
5024
|
+
/**
|
|
5025
|
+
* Addition.
|
|
5026
|
+
*/
|
|
5027
|
+
add(other: WasmStaticMultiDual3): WasmStaticMultiDual3;
|
|
5028
|
+
/**
|
|
5029
|
+
* Division.
|
|
5030
|
+
*/
|
|
5031
|
+
div(other: WasmStaticMultiDual3): WasmStaticMultiDual3;
|
|
5032
|
+
/**
|
|
5033
|
+
* Multiplication.
|
|
5034
|
+
*/
|
|
5035
|
+
mul(other: WasmStaticMultiDual3): WasmStaticMultiDual3;
|
|
5036
|
+
/**
|
|
5037
|
+
* Negation.
|
|
5038
|
+
*/
|
|
5039
|
+
neg(): WasmStaticMultiDual3;
|
|
5040
|
+
/**
|
|
5041
|
+
* Create a fixed-size multi-dual number from a value and gradient.
|
|
5042
|
+
*/
|
|
5043
|
+
constructor(value: number, gradient: Float64Array);
|
|
5044
|
+
/**
|
|
5045
|
+
* Subtraction.
|
|
5046
|
+
*/
|
|
5047
|
+
sub(other: WasmStaticMultiDual3): WasmStaticMultiDual3;
|
|
5048
|
+
/**
|
|
5049
|
+
* Number of derivative variables.
|
|
5050
|
+
*/
|
|
5051
|
+
nVars(): number;
|
|
5052
|
+
/**
|
|
5053
|
+
* Create a constant with zero gradient.
|
|
5054
|
+
*/
|
|
5055
|
+
static constant(value: number): WasmStaticMultiDual3;
|
|
5056
|
+
/**
|
|
5057
|
+
* Create a basis-seeded variable.
|
|
5058
|
+
*/
|
|
5059
|
+
static variable(value: number, var_index: number): WasmStaticMultiDual3;
|
|
5060
|
+
/**
|
|
5061
|
+
* Get the function value.
|
|
5062
|
+
*/
|
|
5063
|
+
getValue(): number;
|
|
5064
|
+
/**
|
|
5065
|
+
* Create one fixed-size variable per coordinate.
|
|
5066
|
+
*/
|
|
5067
|
+
static variables(values: Float64Array): Array<any>;
|
|
5068
|
+
}
|
|
5069
|
+
export class WasmStaticMultiDual4 {
|
|
5070
|
+
free(): void;
|
|
5071
|
+
/**
|
|
5072
|
+
* Get the fixed-size gradient as a JavaScript array-compatible vector.
|
|
5073
|
+
*/
|
|
5074
|
+
getGradient(): Float64Array;
|
|
5075
|
+
/**
|
|
5076
|
+
* Maximum with explicit derivative tie handling.
|
|
5077
|
+
*/
|
|
5078
|
+
maxByPolicy(other: WasmStaticMultiDual4, policy: WasmBranchPolicy): WasmStaticMultiDual4;
|
|
5079
|
+
/**
|
|
5080
|
+
* Minimum with explicit derivative tie handling.
|
|
5081
|
+
*/
|
|
5082
|
+
minByPolicy(other: WasmStaticMultiDual4, policy: WasmBranchPolicy): WasmStaticMultiDual4;
|
|
5083
|
+
/**
|
|
5084
|
+
* Convert to the heap-backed multi-dual wrapper.
|
|
5085
|
+
*/
|
|
5086
|
+
toMultiDual(): WasmMultiDualNumber;
|
|
5087
|
+
/**
|
|
5088
|
+
* Addition.
|
|
5089
|
+
*/
|
|
5090
|
+
add(other: WasmStaticMultiDual4): WasmStaticMultiDual4;
|
|
5091
|
+
/**
|
|
5092
|
+
* Division.
|
|
5093
|
+
*/
|
|
5094
|
+
div(other: WasmStaticMultiDual4): WasmStaticMultiDual4;
|
|
5095
|
+
/**
|
|
5096
|
+
* Multiplication.
|
|
5097
|
+
*/
|
|
5098
|
+
mul(other: WasmStaticMultiDual4): WasmStaticMultiDual4;
|
|
5099
|
+
/**
|
|
5100
|
+
* Negation.
|
|
5101
|
+
*/
|
|
5102
|
+
neg(): WasmStaticMultiDual4;
|
|
5103
|
+
/**
|
|
5104
|
+
* Create a fixed-size multi-dual number from a value and gradient.
|
|
5105
|
+
*/
|
|
5106
|
+
constructor(value: number, gradient: Float64Array);
|
|
5107
|
+
/**
|
|
5108
|
+
* Subtraction.
|
|
5109
|
+
*/
|
|
5110
|
+
sub(other: WasmStaticMultiDual4): WasmStaticMultiDual4;
|
|
5111
|
+
/**
|
|
5112
|
+
* Number of derivative variables.
|
|
5113
|
+
*/
|
|
5114
|
+
nVars(): number;
|
|
5115
|
+
/**
|
|
5116
|
+
* Create a constant with zero gradient.
|
|
5117
|
+
*/
|
|
5118
|
+
static constant(value: number): WasmStaticMultiDual4;
|
|
5119
|
+
/**
|
|
5120
|
+
* Create a basis-seeded variable.
|
|
5121
|
+
*/
|
|
5122
|
+
static variable(value: number, var_index: number): WasmStaticMultiDual4;
|
|
5123
|
+
/**
|
|
5124
|
+
* Get the function value.
|
|
5125
|
+
*/
|
|
5126
|
+
getValue(): number;
|
|
5127
|
+
/**
|
|
5128
|
+
* Create one fixed-size variable per coordinate.
|
|
5129
|
+
*/
|
|
5130
|
+
static variables(values: Float64Array): Array<any>;
|
|
5131
|
+
}
|
|
4417
5132
|
/**
|
|
4418
5133
|
* WASM wrapper for torus weights in equivariant localization
|
|
4419
5134
|
*/
|
|
@@ -5088,6 +5803,7 @@ export interface InitOutput {
|
|
|
5088
5803
|
readonly __wbg_wasmbinarymultivector_free: (a: number, b: number) => void;
|
|
5089
5804
|
readonly __wbg_wasmboundaryface_free: (a: number, b: number) => void;
|
|
5090
5805
|
readonly __wbg_wasmcapability_free: (a: number, b: number) => void;
|
|
5806
|
+
readonly __wbg_wasmcgtarena_free: (a: number, b: number) => void;
|
|
5091
5807
|
readonly __wbg_wasmchowclass_free: (a: number, b: number) => void;
|
|
5092
5808
|
readonly __wbg_wasmcommunity_free: (a: number, b: number) => void;
|
|
5093
5809
|
readonly __wbg_wasmcomposablenamespace_free: (a: number, b: number) => void;
|
|
@@ -5099,6 +5815,8 @@ export interface InitOutput {
|
|
|
5099
5815
|
readonly __wbg_wasmfiltration_free: (a: number, b: number) => void;
|
|
5100
5816
|
readonly __wbg_wasmfisherinformationmatrix_free: (a: number, b: number) => void;
|
|
5101
5817
|
readonly __wbg_wasmfishermeasure_free: (a: number, b: number) => void;
|
|
5818
|
+
readonly __wbg_wasmgameid_free: (a: number, b: number) => void;
|
|
5819
|
+
readonly __wbg_wasmgameinspection_free: (a: number, b: number) => void;
|
|
5102
5820
|
readonly __wbg_wasmgaussianmultivector_free: (a: number, b: number) => void;
|
|
5103
5821
|
readonly __wbg_wasmgeodesicintegrator_free: (a: number, b: number) => void;
|
|
5104
5822
|
readonly __wbg_wasmgeometricca_free: (a: number, b: number) => void;
|
|
@@ -5107,7 +5825,6 @@ export interface InitOutput {
|
|
|
5107
5825
|
readonly __wbg_wasmgf2matrix_free: (a: number, b: number) => void;
|
|
5108
5826
|
readonly __wbg_wasmgf2vector_free: (a: number, b: number) => void;
|
|
5109
5827
|
readonly __wbg_wasmgradeprojecteddistribution_free: (a: number, b: number) => void;
|
|
5110
|
-
readonly __wbg_wasmgrassmannian_free: (a: number, b: number) => void;
|
|
5111
5828
|
readonly __wbg_wasmholographicmemory_free: (a: number, b: number) => void;
|
|
5112
5829
|
readonly __wbg_wasmintersectionresult_free: (a: number, b: number) => void;
|
|
5113
5830
|
readonly __wbg_wasminversecadesigner_free: (a: number, b: number) => void;
|
|
@@ -5124,6 +5841,7 @@ export interface InitOutput {
|
|
|
5124
5841
|
readonly __wbg_wasmopticalcodebook_free: (a: number, b: number) => void;
|
|
5125
5842
|
readonly __wbg_wasmopticalrotorfield_free: (a: number, b: number) => void;
|
|
5126
5843
|
readonly __wbg_wasmoptimizationresult_free: (a: number, b: number) => void;
|
|
5844
|
+
readonly __wbg_wasmordinalarena_free: (a: number, b: number) => void;
|
|
5127
5845
|
readonly __wbg_wasmpersistenthomology_free: (a: number, b: number) => void;
|
|
5128
5846
|
readonly __wbg_wasmpropagationanalysis_free: (a: number, b: number) => void;
|
|
5129
5847
|
readonly __wbg_wasmrelativisticparticle_free: (a: number, b: number) => void;
|
|
@@ -5131,12 +5849,13 @@ export interface InitOutput {
|
|
|
5131
5849
|
readonly __wbg_wasmschubertcalculus_free: (a: number, b: number) => void;
|
|
5132
5850
|
readonly __wbg_wasmselfassembler_free: (a: number, b: number) => void;
|
|
5133
5851
|
readonly __wbg_wasmsensitivitymap_free: (a: number, b: number) => void;
|
|
5852
|
+
readonly __wbg_wasmshortsurreal_free: (a: number, b: number) => void;
|
|
5134
5853
|
readonly __wbg_wasmsimplex_free: (a: number, b: number) => void;
|
|
5135
5854
|
readonly __wbg_wasmsimplicialcomplex_free: (a: number, b: number) => void;
|
|
5136
5855
|
readonly __wbg_wasmsmtproofobligation_free: (a: number, b: number) => void;
|
|
5137
5856
|
readonly __wbg_wasmspectraldecomposition_free: (a: number, b: number) => void;
|
|
5857
|
+
readonly __wbg_wasmstaticmultidual4_free: (a: number, b: number) => void;
|
|
5138
5858
|
readonly __wbg_wasmtorusweights_free: (a: number, b: number) => void;
|
|
5139
|
-
readonly __wbg_wasmtrajectorypoint_free: (a: number, b: number) => void;
|
|
5140
5859
|
readonly __wbg_wasmtropicaldualclifford_free: (a: number, b: number) => void;
|
|
5141
5860
|
readonly __wbg_wasmtropicalnetwork_free: (a: number, b: number) => void;
|
|
5142
5861
|
readonly __wbg_wasmtropicalviterbi_free: (a: number, b: number) => void;
|
|
@@ -5271,6 +5990,7 @@ export interface InitOutput {
|
|
|
5271
5990
|
readonly schubertbatch_multiIntersectBatch: (a: number, b: number, c: number, d: number) => [number, number, number, number];
|
|
5272
5991
|
readonly tropicalbatch_batchTropicalAdd: (a: number, b: number) => number;
|
|
5273
5992
|
readonly tropicalbatch_batchTropicalMul: (a: number, b: number) => number;
|
|
5993
|
+
readonly tropicalbatch_foldOtimes: (a: number, b: number) => number;
|
|
5274
5994
|
readonly tropicalbatch_maxLogProb: (a: number, b: number) => number;
|
|
5275
5995
|
readonly tropicalbatch_viterbiStep: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => [number, number, number, number];
|
|
5276
5996
|
readonly tropicalmlops_convexCombination: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
@@ -5345,6 +6065,30 @@ export interface InitOutput {
|
|
|
5345
6065
|
readonly wasmcapability_getName: (a: number) => [number, number];
|
|
5346
6066
|
readonly wasmcapability_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => [number, number, number];
|
|
5347
6067
|
readonly wasmcapability_requires: (a: number, b: number, c: number) => number;
|
|
6068
|
+
readonly wasmcgtarena_add: (a: number, b: number, c: number) => [number, number, number];
|
|
6069
|
+
readonly wasmcgtarena_birthday: (a: number, b: number) => [number, number, number];
|
|
6070
|
+
readonly wasmcgtarena_canonical: (a: number, b: number) => [number, number, number];
|
|
6071
|
+
readonly wasmcgtarena_compare: (a: number, b: number, c: number) => [number, number, number, number];
|
|
6072
|
+
readonly wasmcgtarena_cut: (a: number, b: number, c: number) => [number, number, number];
|
|
6073
|
+
readonly wasmcgtarena_equivalent: (a: number, b: number, c: number) => [number, number, number];
|
|
6074
|
+
readonly wasmcgtarena_formatCanonicalGame: (a: number, b: number) => [number, number, number, number];
|
|
6075
|
+
readonly wasmcgtarena_formatGame: (a: number, b: number) => [number, number, number, number];
|
|
6076
|
+
readonly wasmcgtarena_grundy: (a: number, b: number) => [number, number, number];
|
|
6077
|
+
readonly wasmcgtarena_inspect: (a: number, b: number) => [number, number, number];
|
|
6078
|
+
readonly wasmcgtarena_isImpartial: (a: number, b: number) => [number, number, number];
|
|
6079
|
+
readonly wasmcgtarena_isNumeric: (a: number, b: number) => [number, number, number];
|
|
6080
|
+
readonly wasmcgtarena_leftCut: (a: number, b: number) => [number, number, number];
|
|
6081
|
+
readonly wasmcgtarena_minusOne: (a: number) => [number, number, number];
|
|
6082
|
+
readonly wasmcgtarena_neg: (a: number, b: number) => [number, number, number];
|
|
6083
|
+
readonly wasmcgtarena_new: () => number;
|
|
6084
|
+
readonly wasmcgtarena_nimHeap: (a: number, b: number) => [number, number, number];
|
|
6085
|
+
readonly wasmcgtarena_nodeCount: (a: number) => number;
|
|
6086
|
+
readonly wasmcgtarena_one: (a: number) => [number, number, number];
|
|
6087
|
+
readonly wasmcgtarena_outcome: (a: number, b: number) => [number, number, number, number];
|
|
6088
|
+
readonly wasmcgtarena_rightCut: (a: number, b: number) => [number, number, number];
|
|
6089
|
+
readonly wasmcgtarena_star: (a: number) => [number, number, number];
|
|
6090
|
+
readonly wasmcgtarena_sub: (a: number, b: number, c: number) => [number, number, number];
|
|
6091
|
+
readonly wasmcgtarena_zero: (a: number) => number;
|
|
5348
6092
|
readonly wasmchowclass_getDegree: (a: number) => number;
|
|
5349
6093
|
readonly wasmchowclass_getDimension: (a: number) => number;
|
|
5350
6094
|
readonly wasmchowclass_hypersurface: (a: number) => number;
|
|
@@ -5387,7 +6131,9 @@ export interface InitOutput {
|
|
|
5387
6131
|
readonly wasmdualnumber_getDual: (a: number) => number;
|
|
5388
6132
|
readonly wasmdualnumber_ln: (a: number) => [number, number, number];
|
|
5389
6133
|
readonly wasmdualnumber_max: (a: number, b: number) => number;
|
|
6134
|
+
readonly wasmdualnumber_maxByPolicy: (a: number, b: number, c: number) => number;
|
|
5390
6135
|
readonly wasmdualnumber_min: (a: number, b: number) => number;
|
|
6136
|
+
readonly wasmdualnumber_minByPolicy: (a: number, b: number, c: number) => number;
|
|
5391
6137
|
readonly wasmdualnumber_mul: (a: number, b: number) => number;
|
|
5392
6138
|
readonly wasmdualnumber_neg: (a: number) => number;
|
|
5393
6139
|
readonly wasmdualnumber_new: (a: number, b: number) => number;
|
|
@@ -5403,6 +6149,23 @@ export interface InitOutput {
|
|
|
5403
6149
|
readonly wasmdualnumber_tan: (a: number) => number;
|
|
5404
6150
|
readonly wasmdualnumber_tanh: (a: number) => number;
|
|
5405
6151
|
readonly wasmdualnumber_variable: (a: number) => number;
|
|
6152
|
+
readonly wasmdyadic_abs: (a: number) => number;
|
|
6153
|
+
readonly wasmdyadic_add: (a: number, b: number) => number;
|
|
6154
|
+
readonly wasmdyadic_checkedDiv: (a: number, b: number) => [number, number, number];
|
|
6155
|
+
readonly wasmdyadic_checkedReciprocal: (a: number) => [number, number, number];
|
|
6156
|
+
readonly wasmdyadic_format: (a: number) => [number, number];
|
|
6157
|
+
readonly wasmdyadic_fromInteger: (a: number) => number;
|
|
6158
|
+
readonly wasmdyadic_isNegative: (a: number) => number;
|
|
6159
|
+
readonly wasmdyadic_isPositive: (a: number) => number;
|
|
6160
|
+
readonly wasmdyadic_isZero: (a: number) => number;
|
|
6161
|
+
readonly wasmdyadic_mul: (a: number, b: number) => number;
|
|
6162
|
+
readonly wasmdyadic_neg: (a: number) => number;
|
|
6163
|
+
readonly wasmdyadic_new: (a: number, b: number) => number;
|
|
6164
|
+
readonly wasmdyadic_numeratorString: (a: number) => [number, number];
|
|
6165
|
+
readonly wasmdyadic_one: () => number;
|
|
6166
|
+
readonly wasmdyadic_sign: (a: number) => [number, number];
|
|
6167
|
+
readonly wasmdyadic_sub: (a: number, b: number) => number;
|
|
6168
|
+
readonly wasmdyadic_zero: () => number;
|
|
5406
6169
|
readonly wasmequivariantlocalizer_fixedPointCount: (a: number) => number;
|
|
5407
6170
|
readonly wasmequivariantlocalizer_localizedIntersection: (a: number, b: number, c: number) => number;
|
|
5408
6171
|
readonly wasmequivariantlocalizer_new: (a: number, b: number) => [number, number, number];
|
|
@@ -5433,6 +6196,17 @@ export interface InitOutput {
|
|
|
5433
6196
|
readonly wasmfourvelocity_rapidity: (a: number) => number;
|
|
5434
6197
|
readonly wasmfourvelocity_spatial_velocity_magnitude: (a: number) => number;
|
|
5435
6198
|
readonly wasmfourvelocity_to_string: (a: number) => [number, number];
|
|
6199
|
+
readonly wasmgameid_same: (a: number, b: number) => number;
|
|
6200
|
+
readonly wasmgameinspection_birthday: (a: number) => number;
|
|
6201
|
+
readonly wasmgameinspection_canonical: (a: number) => number;
|
|
6202
|
+
readonly wasmgameinspection_canonicalForm: (a: number) => [number, number];
|
|
6203
|
+
readonly wasmgameinspection_isCanonical: (a: number) => number;
|
|
6204
|
+
readonly wasmgameinspection_isImpartial: (a: number) => number;
|
|
6205
|
+
readonly wasmgameinspection_isNonNumeric: (a: number) => number;
|
|
6206
|
+
readonly wasmgameinspection_isNumeric: (a: number) => number;
|
|
6207
|
+
readonly wasmgameinspection_isPartizan: (a: number) => number;
|
|
6208
|
+
readonly wasmgameinspection_outcome: (a: number) => [number, number];
|
|
6209
|
+
readonly wasmgameinspection_reachableNodeCount: (a: number) => number;
|
|
5436
6210
|
readonly wasmgaussianmultivector_getCovariance: (a: number) => [number, number];
|
|
5437
6211
|
readonly wasmgaussianmultivector_getMean: (a: number) => [number, number];
|
|
5438
6212
|
readonly wasmgaussianmultivector_getStdDevs: (a: number) => [number, number];
|
|
@@ -5622,10 +6396,13 @@ export interface InitOutput {
|
|
|
5622
6396
|
readonly wasmmultidualnumber_getGradient: (a: number) => [number, number];
|
|
5623
6397
|
readonly wasmmultidualnumber_getNumVars: (a: number) => number;
|
|
5624
6398
|
readonly wasmmultidualnumber_getPartial: (a: number, b: number) => [number, number, number];
|
|
6399
|
+
readonly wasmmultidualnumber_maxByPolicy: (a: number, b: number, c: number) => [number, number, number];
|
|
6400
|
+
readonly wasmmultidualnumber_minByPolicy: (a: number, b: number, c: number) => [number, number, number];
|
|
5625
6401
|
readonly wasmmultidualnumber_mul: (a: number, b: number) => [number, number, number];
|
|
5626
6402
|
readonly wasmmultidualnumber_new: (a: number, b: number, c: number) => number;
|
|
5627
6403
|
readonly wasmmultidualnumber_sqrt: (a: number) => [number, number, number];
|
|
5628
6404
|
readonly wasmmultidualnumber_variable: (a: number, b: number, c: number) => number;
|
|
6405
|
+
readonly wasmmultidualnumber_variables: (a: number, b: number) => any;
|
|
5629
6406
|
readonly wasmmultiobjectiveoptimizer_optimizeBiObjective: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
5630
6407
|
readonly wasmmultiobjectiveresult_converged: (a: number) => number;
|
|
5631
6408
|
readonly wasmmultiobjectiveresult_pareto_front: (a: number) => [number, number];
|
|
@@ -5712,11 +6489,40 @@ export interface InitOutput {
|
|
|
5712
6489
|
readonly wasmopticalrotorfield_random: (a: number, b: number, c: bigint) => number;
|
|
5713
6490
|
readonly wasmopticalrotorfield_totalEnergy: (a: number) => number;
|
|
5714
6491
|
readonly wasmopticalrotorfield_uniform: (a: number, b: number, c: number, d: number) => number;
|
|
5715
|
-
readonly wasmopticalrotorfield_width: (a: number) => number;
|
|
5716
6492
|
readonly wasmoptimizationresult_converged: (a: number) => number;
|
|
5717
6493
|
readonly wasmoptimizationresult_solution: (a: number) => [number, number];
|
|
5718
6494
|
readonly wasmoptimizationutils_dominates: (a: number, b: number, c: number, d: number) => number;
|
|
5719
6495
|
readonly wasmoptimizationutils_numericalGradient: (a: number, b: number, c: number, d: number, e: number) => [number, number, number, number];
|
|
6496
|
+
readonly wasmordinalarena_add: (a: number, b: number, c: number) => [number, number, number];
|
|
6497
|
+
readonly wasmordinalarena_bestWeight2: (a: number, b: number, c: number) => [number, number, number];
|
|
6498
|
+
readonly wasmordinalarena_bestWeight3: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
6499
|
+
readonly wasmordinalarena_compare: (a: number, b: number, c: number) => [number, number, number];
|
|
6500
|
+
readonly wasmordinalarena_compareWeight: (a: number, b: number, c: number) => [number, number, number];
|
|
6501
|
+
readonly wasmordinalarena_composeWeight2: (a: number, b: number, c: number) => [number, number, number];
|
|
6502
|
+
readonly wasmordinalarena_composeWeight3: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
6503
|
+
readonly wasmordinalarena_finite: (a: number, b: number) => number;
|
|
6504
|
+
readonly wasmordinalarena_finiteValue: (a: number, b: number) => [number, number, number, number];
|
|
6505
|
+
readonly wasmordinalarena_formatOrdinal: (a: number, b: number) => [number, number, number, number];
|
|
6506
|
+
readonly wasmordinalarena_formatWeight: (a: number, b: number) => [number, number, number, number];
|
|
6507
|
+
readonly wasmordinalarena_inspectOrdinal: (a: number, b: number) => [number, number, number];
|
|
6508
|
+
readonly wasmordinalarena_isLimit: (a: number, b: number) => [number, number, number];
|
|
6509
|
+
readonly wasmordinalarena_isSuccessor: (a: number, b: number) => [number, number, number];
|
|
6510
|
+
readonly wasmordinalarena_isZeroOrdinal: (a: number, b: number) => [number, number, number];
|
|
6511
|
+
readonly wasmordinalarena_kind: (a: number, b: number) => [number, number, number, number];
|
|
6512
|
+
readonly wasmordinalarena_new: () => number;
|
|
6513
|
+
readonly wasmordinalarena_nodeCount: (a: number) => number;
|
|
6514
|
+
readonly wasmordinalarena_omega: (a: number) => number;
|
|
6515
|
+
readonly wasmordinalarena_one: (a: number) => number;
|
|
6516
|
+
readonly wasmordinalarena_oplusWeight: (a: number, b: number, c: number) => [number, number, number];
|
|
6517
|
+
readonly wasmordinalarena_otimesWeight: (a: number, b: number, c: number) => [number, number, number];
|
|
6518
|
+
readonly wasmordinalarena_termCount: (a: number, b: number) => [number, number, number];
|
|
6519
|
+
readonly wasmordinalarena_valuation: (a: number, b: number) => [number, number, number];
|
|
6520
|
+
readonly wasmordinalarena_weightFromOrdinal: (a: number, b: number) => number;
|
|
6521
|
+
readonly wasmordinalarena_zero: (a: number) => number;
|
|
6522
|
+
readonly wasmordinalweight_bottom: () => number;
|
|
6523
|
+
readonly wasmordinalweight_isBottom: (a: number) => number;
|
|
6524
|
+
readonly wasmordinalweight_one: () => number;
|
|
6525
|
+
readonly wasmordinalweight_ordinalIndex: (a: number) => number;
|
|
5720
6526
|
readonly wasmparametricdensity_cauchy: () => number;
|
|
5721
6527
|
readonly wasmparametricdensity_evaluate: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
5722
6528
|
readonly wasmparametricdensity_exponential: () => number;
|
|
@@ -5791,6 +6597,27 @@ export interface InitOutput {
|
|
|
5791
6597
|
readonly wasmsensitivitymap_getAllSensitivities: (a: number) => [number, number, number];
|
|
5792
6598
|
readonly wasmsensitivitymap_getMostSensitive: (a: number, b: number) => [number, number];
|
|
5793
6599
|
readonly wasmsensitivitymap_getTotalSensitivity: (a: number) => number;
|
|
6600
|
+
readonly wasmshortsurreal_abs: (a: number) => number;
|
|
6601
|
+
readonly wasmshortsurreal_add: (a: number, b: number) => number;
|
|
6602
|
+
readonly wasmshortsurreal_checkedDiv: (a: number, b: number) => [number, number, number];
|
|
6603
|
+
readonly wasmshortsurreal_checkedReciprocal: (a: number) => [number, number, number];
|
|
6604
|
+
readonly wasmshortsurreal_compare: (a: number, b: number) => [number, number];
|
|
6605
|
+
readonly wasmshortsurreal_format: (a: number) => [number, number];
|
|
6606
|
+
readonly wasmshortsurreal_fromDyadic: (a: number) => number;
|
|
6607
|
+
readonly wasmshortsurreal_fromGame: (a: number, b: number) => [number, number, number];
|
|
6608
|
+
readonly wasmshortsurreal_fromInteger: (a: number) => number;
|
|
6609
|
+
readonly wasmshortsurreal_hasProvenance: (a: number) => number;
|
|
6610
|
+
readonly wasmshortsurreal_isNegative: (a: number) => number;
|
|
6611
|
+
readonly wasmshortsurreal_isPositive: (a: number) => number;
|
|
6612
|
+
readonly wasmshortsurreal_isZero: (a: number) => number;
|
|
6613
|
+
readonly wasmshortsurreal_mul: (a: number, b: number) => number;
|
|
6614
|
+
readonly wasmshortsurreal_neg: (a: number) => number;
|
|
6615
|
+
readonly wasmshortsurreal_one: () => number;
|
|
6616
|
+
readonly wasmshortsurreal_sign: (a: number) => [number, number];
|
|
6617
|
+
readonly wasmshortsurreal_sub: (a: number, b: number) => number;
|
|
6618
|
+
readonly wasmshortsurreal_toDyadic: (a: number) => number;
|
|
6619
|
+
readonly wasmshortsurreal_toGameIn: (a: number, b: number) => [number, number, number];
|
|
6620
|
+
readonly wasmshortsurreal_zero: () => number;
|
|
5794
6621
|
readonly wasmsimpleoptimizer_optimizeQuadratic: (a: number, b: number, c: number, d: number, e: number) => [number, number, number];
|
|
5795
6622
|
readonly wasmsimplex_boundaryFaces: (a: number) => [number, number];
|
|
5796
6623
|
readonly wasmsimplex_containsVertex: (a: number, b: number) => number;
|
|
@@ -5852,6 +6679,47 @@ export interface InitOutput {
|
|
|
5852
6679
|
readonly wasmstabilitycondition_new: (a: number, b: number, c: number) => number;
|
|
5853
6680
|
readonly wasmstabilitycondition_phase: (a: number, b: number) => number;
|
|
5854
6681
|
readonly wasmstabilitycondition_stableCount: (a: number, b: number) => number;
|
|
6682
|
+
readonly wasmstaticmultidual2_add: (a: number, b: number) => number;
|
|
6683
|
+
readonly wasmstaticmultidual2_constant: (a: number) => number;
|
|
6684
|
+
readonly wasmstaticmultidual2_div: (a: number, b: number) => [number, number, number];
|
|
6685
|
+
readonly wasmstaticmultidual2_getGradient: (a: number) => [number, number];
|
|
6686
|
+
readonly wasmstaticmultidual2_maxByPolicy: (a: number, b: number, c: number) => number;
|
|
6687
|
+
readonly wasmstaticmultidual2_minByPolicy: (a: number, b: number, c: number) => number;
|
|
6688
|
+
readonly wasmstaticmultidual2_mul: (a: number, b: number) => number;
|
|
6689
|
+
readonly wasmstaticmultidual2_nVars: (a: number) => number;
|
|
6690
|
+
readonly wasmstaticmultidual2_neg: (a: number) => number;
|
|
6691
|
+
readonly wasmstaticmultidual2_new: (a: number, b: number, c: number) => [number, number, number];
|
|
6692
|
+
readonly wasmstaticmultidual2_sub: (a: number, b: number) => number;
|
|
6693
|
+
readonly wasmstaticmultidual2_toMultiDual: (a: number) => number;
|
|
6694
|
+
readonly wasmstaticmultidual2_variable: (a: number, b: number) => [number, number, number];
|
|
6695
|
+
readonly wasmstaticmultidual2_variables: (a: number, b: number) => [number, number, number];
|
|
6696
|
+
readonly wasmstaticmultidual3_add: (a: number, b: number) => number;
|
|
6697
|
+
readonly wasmstaticmultidual3_constant: (a: number) => number;
|
|
6698
|
+
readonly wasmstaticmultidual3_div: (a: number, b: number) => [number, number, number];
|
|
6699
|
+
readonly wasmstaticmultidual3_getGradient: (a: number) => [number, number];
|
|
6700
|
+
readonly wasmstaticmultidual3_maxByPolicy: (a: number, b: number, c: number) => number;
|
|
6701
|
+
readonly wasmstaticmultidual3_minByPolicy: (a: number, b: number, c: number) => number;
|
|
6702
|
+
readonly wasmstaticmultidual3_mul: (a: number, b: number) => number;
|
|
6703
|
+
readonly wasmstaticmultidual3_nVars: (a: number) => number;
|
|
6704
|
+
readonly wasmstaticmultidual3_neg: (a: number) => number;
|
|
6705
|
+
readonly wasmstaticmultidual3_new: (a: number, b: number, c: number) => [number, number, number];
|
|
6706
|
+
readonly wasmstaticmultidual3_sub: (a: number, b: number) => number;
|
|
6707
|
+
readonly wasmstaticmultidual3_toMultiDual: (a: number) => number;
|
|
6708
|
+
readonly wasmstaticmultidual3_variable: (a: number, b: number) => [number, number, number];
|
|
6709
|
+
readonly wasmstaticmultidual3_variables: (a: number, b: number) => [number, number, number];
|
|
6710
|
+
readonly wasmstaticmultidual4_add: (a: number, b: number) => number;
|
|
6711
|
+
readonly wasmstaticmultidual4_constant: (a: number) => number;
|
|
6712
|
+
readonly wasmstaticmultidual4_div: (a: number, b: number) => [number, number, number];
|
|
6713
|
+
readonly wasmstaticmultidual4_getGradient: (a: number) => [number, number];
|
|
6714
|
+
readonly wasmstaticmultidual4_maxByPolicy: (a: number, b: number, c: number) => number;
|
|
6715
|
+
readonly wasmstaticmultidual4_minByPolicy: (a: number, b: number, c: number) => number;
|
|
6716
|
+
readonly wasmstaticmultidual4_mul: (a: number, b: number) => number;
|
|
6717
|
+
readonly wasmstaticmultidual4_neg: (a: number) => number;
|
|
6718
|
+
readonly wasmstaticmultidual4_new: (a: number, b: number, c: number) => [number, number, number];
|
|
6719
|
+
readonly wasmstaticmultidual4_sub: (a: number, b: number) => number;
|
|
6720
|
+
readonly wasmstaticmultidual4_toMultiDual: (a: number) => number;
|
|
6721
|
+
readonly wasmstaticmultidual4_variable: (a: number, b: number) => [number, number, number];
|
|
6722
|
+
readonly wasmstaticmultidual4_variables: (a: number, b: number) => [number, number, number];
|
|
5855
6723
|
readonly wasmtorusweights_custom: (a: number, b: number) => [number, number, number];
|
|
5856
6724
|
readonly wasmtorusweights_getWeights: (a: number) => [number, number];
|
|
5857
6725
|
readonly wasmtorusweights_standard: (a: number) => number;
|
|
@@ -5958,11 +6826,14 @@ export interface InitOutput {
|
|
|
5958
6826
|
readonly __wbg_set_wasmtrajectorypoint_time: (a: number, b: number) => void;
|
|
5959
6827
|
readonly wasmmultivector_norm: (a: number) => number;
|
|
5960
6828
|
readonly wasmspacetimevector_t: (a: number) => number;
|
|
6829
|
+
readonly wasmordinalweight_zero: () => number;
|
|
5961
6830
|
readonly wasmtropicalnumber_zero: () => number;
|
|
5962
6831
|
readonly wasmtropicalnumber_tropicalMul: (a: number, b: number) => number;
|
|
5963
6832
|
readonly wasmtrajectorypoint_position: (a: number) => number;
|
|
6833
|
+
readonly wasmstaticmultidual4_nVars: (a: number) => number;
|
|
5964
6834
|
readonly wasmtropicalpolynomial_coefficients_count: (a: number) => number;
|
|
5965
6835
|
readonly infogeomutils_softmax: (a: number, b: number) => [number, number];
|
|
6836
|
+
readonly tropicalbatch_foldOplus: (a: number, b: number) => number;
|
|
5966
6837
|
readonly __wbg_wasmparametricdensity_free: (a: number, b: number) => void;
|
|
5967
6838
|
readonly __wbg_wasmprobabilitymeasure_free: (a: number, b: number) => void;
|
|
5968
6839
|
readonly __wbg_wasmrareevent_free: (a: number, b: number) => void;
|
|
@@ -5980,6 +6851,7 @@ export interface InitOutput {
|
|
|
5980
6851
|
readonly wasmcommunity_cohesion_score: (a: number) => number;
|
|
5981
6852
|
readonly wasmcriticalpoint_value: (a: number) => number;
|
|
5982
6853
|
readonly wasmdualnumber_getReal: (a: number) => number;
|
|
6854
|
+
readonly wasmdyadic_exponent: (a: number) => number;
|
|
5983
6855
|
readonly wasmevaluationresult_getBestPathScore: (a: number) => number;
|
|
5984
6856
|
readonly wasmevaluationresult_getGradientNorm: (a: number) => number;
|
|
5985
6857
|
readonly wasmgeometricbrownianmotion_getMu: (a: number) => number;
|
|
@@ -5999,19 +6871,25 @@ export interface InitOutput {
|
|
|
5999
6871
|
readonly wasmmultiobjectiveresult_generations: (a: number) => number;
|
|
6000
6872
|
readonly wasmopticalfieldalgebra_height: (a: number) => number;
|
|
6001
6873
|
readonly wasmopticalfieldalgebra_width: (a: number) => number;
|
|
6874
|
+
readonly wasmopticalrotorfield_width: (a: number) => number;
|
|
6002
6875
|
readonly wasmoptimizationresult_iterations: (a: number) => number;
|
|
6003
6876
|
readonly wasmoptimizationresult_objective_value: (a: number) => number;
|
|
6877
|
+
readonly wasmordinal_getIndex: (a: number) => number;
|
|
6004
6878
|
readonly wasmprob_probability: (a: number) => number;
|
|
6005
6879
|
readonly wasmprob_value: (a: number) => number;
|
|
6006
6880
|
readonly wasmprojectivespace_getDimension: (a: number) => number;
|
|
6007
6881
|
readonly wasmpropagationanalysis_convergence_time: (a: number) => number;
|
|
6008
6882
|
readonly wasmrareevent_probability: (a: number) => number;
|
|
6009
6883
|
readonly wasmschwarzschildmetric_mass: (a: number) => number;
|
|
6884
|
+
readonly wasmshortsurreal_birthday: (a: number) => number;
|
|
6010
6885
|
readonly wasmsimplicialcomplex_dimension: (a: number) => number;
|
|
6011
6886
|
readonly wasmspacetimevector_x: (a: number) => number;
|
|
6012
6887
|
readonly wasmspacetimevector_y: (a: number) => number;
|
|
6013
6888
|
readonly wasmspacetimevector_z: (a: number) => number;
|
|
6014
6889
|
readonly wasmstabilitycondition_getTrustLevel: (a: number) => number;
|
|
6890
|
+
readonly wasmstaticmultidual2_getValue: (a: number) => number;
|
|
6891
|
+
readonly wasmstaticmultidual3_getValue: (a: number) => number;
|
|
6892
|
+
readonly wasmstaticmultidual4_getValue: (a: number) => number;
|
|
6015
6893
|
readonly wasmtropicalcurve_getGenus: (a: number) => number;
|
|
6016
6894
|
readonly wasmtropicalnetwork_getSize: (a: number) => number;
|
|
6017
6895
|
readonly wasmtropicalnumber_getValue: (a: number) => number;
|
|
@@ -6046,6 +6924,7 @@ export interface InitOutput {
|
|
|
6046
6924
|
readonly __wbg_wasmgeometricbrownianmotion_free: (a: number, b: number) => void;
|
|
6047
6925
|
readonly __wbg_wasmgeometricedge_free: (a: number, b: number) => void;
|
|
6048
6926
|
readonly __wbg_wasmgpuoptimizer_free: (a: number, b: number) => void;
|
|
6927
|
+
readonly __wbg_wasmgrassmannian_free: (a: number, b: number) => void;
|
|
6049
6928
|
readonly __wbg_wasmhilbertspace_free: (a: number, b: number) => void;
|
|
6050
6929
|
readonly __wbg_wasmmontecarloestimator_free: (a: number, b: number) => void;
|
|
6051
6930
|
readonly __wbg_wasmmontecarloverifier_free: (a: number, b: number) => void;
|
|
@@ -6053,6 +6932,8 @@ export interface InitOutput {
|
|
|
6053
6932
|
readonly __wbg_wasmnamespaceintersection_free: (a: number, b: number) => void;
|
|
6054
6933
|
readonly __wbg_wasmopticalfieldalgebra_free: (a: number, b: number) => void;
|
|
6055
6934
|
readonly __wbg_wasmoptimizationutils_free: (a: number, b: number) => void;
|
|
6935
|
+
readonly __wbg_wasmordinal_free: (a: number, b: number) => void;
|
|
6936
|
+
readonly __wbg_wasmordinalweight_free: (a: number, b: number) => void;
|
|
6056
6937
|
readonly __wbg_wasmprob_free: (a: number, b: number) => void;
|
|
6057
6938
|
readonly __wbg_wasmprojectivespace_free: (a: number, b: number) => void;
|
|
6058
6939
|
readonly __wbg_wasmrelativisticconstants_free: (a: number, b: number) => void;
|
|
@@ -6061,12 +6942,16 @@ export interface InitOutput {
|
|
|
6061
6942
|
readonly __wbg_wasmsobolevspace_free: (a: number, b: number) => void;
|
|
6062
6943
|
readonly __wbg_wasmspacetimevector_free: (a: number, b: number) => void;
|
|
6063
6944
|
readonly __wbg_wasmstabilitycondition_free: (a: number, b: number) => void;
|
|
6945
|
+
readonly __wbg_wasmstaticmultidual2_free: (a: number, b: number) => void;
|
|
6946
|
+
readonly __wbg_wasmstaticmultidual3_free: (a: number, b: number) => void;
|
|
6947
|
+
readonly __wbg_wasmtrajectorypoint_free: (a: number, b: number) => void;
|
|
6064
6948
|
readonly __wbg_wasmtropicalcurve_free: (a: number, b: number) => void;
|
|
6065
6949
|
readonly __wbg_wasmtropicalmeasure_free: (a: number, b: number) => void;
|
|
6066
6950
|
readonly __wbg_wasmtropicalnumber_free: (a: number, b: number) => void;
|
|
6067
6951
|
readonly __wbg_wasmtropicalopticalalgebra_free: (a: number, b: number) => void;
|
|
6068
6952
|
readonly __wbg_wasmwallcrossingengine_free: (a: number, b: number) => void;
|
|
6069
6953
|
readonly __wbg_wasmwienerprocess_free: (a: number, b: number) => void;
|
|
6954
|
+
readonly __wbg_wasmdyadic_free: (a: number, b: number) => void;
|
|
6070
6955
|
readonly __wbg_wasmfixedpoint_free: (a: number, b: number) => void;
|
|
6071
6956
|
readonly __wbg_wasmmatrixoperator_free: (a: number, b: number) => void;
|
|
6072
6957
|
readonly __wbg_wasmmultiobjectiveresult_free: (a: number, b: number) => void;
|
|
@@ -6094,8 +6979,8 @@ export interface InitOutput {
|
|
|
6094
6979
|
readonly __wbindgen_export_6: WebAssembly.Table;
|
|
6095
6980
|
readonly __externref_table_dealloc: (a: number) => void;
|
|
6096
6981
|
readonly __externref_drop_slice: (a: number, b: number) => void;
|
|
6097
|
-
readonly
|
|
6098
|
-
readonly
|
|
6982
|
+
readonly closure77_externref_shim: (a: number, b: number, c: any) => void;
|
|
6983
|
+
readonly closure71_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
6099
6984
|
readonly __wbindgen_start: () => void;
|
|
6100
6985
|
}
|
|
6101
6986
|
|