@tuprolog/2p-full 0.31.5-dev0f → 0.31.5-dev0n
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/2p-bdd.js +234 -229
- package/2p-bdd.js.map +1 -1
- package/2p-core.js +5576 -6196
- package/2p-core.js.map +1 -1
- package/2p-datalog.js +9 -2
- package/2p-datalog.js.map +1 -1
- package/2p-dsl-core.js +9 -2
- package/2p-dsl-core.js.map +1 -1
- package/2p-dsl-solve.js +9 -2
- package/2p-dsl-solve.js.map +1 -1
- package/2p-dsl-theory.js +9 -2
- package/2p-dsl-theory.js.map +1 -1
- package/2p-dsl-unify.js +9 -2
- package/2p-dsl-unify.js.map +1 -1
- package/2p-full.js +26 -3
- package/2p-full.js.map +1 -1
- package/2p-io-lib.js +903 -926
- package/2p-io-lib.js.map +1 -1
- package/2p-oop-lib.js +1298 -1327
- package/2p-oop-lib.js.map +1 -1
- package/2p-parser-core.js +352 -356
- package/2p-parser-core.js.map +1 -1
- package/2p-parser-js.js +14 -3
- package/2p-parser-js.js.map +1 -1
- package/2p-parser-theory.js +66 -41
- package/2p-parser-theory.js.map +1 -1
- package/2p-repl.js +175 -173
- package/2p-repl.js.map +1 -1
- package/2p-serialize-core.js +9 -2
- package/2p-serialize-core.js.map +1 -1
- package/2p-serialize-theory.js +9 -2
- package/2p-serialize-theory.js.map +1 -1
- package/2p-solve-classic.js +1405 -1677
- package/2p-solve-classic.js.map +1 -1
- package/2p-solve-concurrent.js +9 -2
- package/2p-solve-concurrent.js.map +1 -1
- package/2p-solve-plp.js +19 -5
- package/2p-solve-plp.js.map +1 -1
- package/2p-solve-problog.js +1845 -1880
- package/2p-solve-problog.js.map +1 -1
- package/2p-solve-streams.js +1239 -1331
- package/2p-solve-streams.js.map +1 -1
- package/2p-solve.js +5342 -5796
- package/2p-solve.js.map +1 -1
- package/2p-theory.js +1734 -1730
- package/2p-theory.js.map +1 -1
- package/2p-unify.js +364 -365
- package/2p-unify.js.map +1 -1
- package/2p-utils.js +548 -510
- package/2p-utils.js.map +1 -1
- package/88b0986a7186d029-atomicfu-js-ir.js +9 -2
- package/88b0986a7186d029-atomicfu-js-ir.js.map +1 -1
- package/clikt-clikt-js-ir.js +2078 -2260
- package/clikt-clikt-js-ir.js.map +1 -1
- package/kotlin-kotlin-stdlib-js-ir.js +2566 -2676
- package/kotlin-kotlin-stdlib-js-ir.js.map +1 -1
- package/kotlin-kotlinx-atomicfu-runtime-js-ir.js +9 -2
- package/kotlin-kotlinx-atomicfu-runtime-js-ir.js.map +1 -1
- package/kotlinx.coroutines-kotlinx-coroutines-core-js-ir.js +9 -2
- package/kotlinx.coroutines-kotlinx-coroutines-core-js-ir.js.map +1 -1
- package/kt-math.js +3666 -3302
- package/kt-math.js.map +1 -1
- package/package.json +56 -2
- package/2p-full.d.ts +0 -270
package/package.json
CHANGED
|
@@ -1,6 +1,60 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"description": "Umbrella package, depending on all 2P-Kt",
|
|
3
|
+
"homepage": "https://github.com/tuProlog/2p-kt",
|
|
4
|
+
"license": "Apache-2.0",
|
|
5
|
+
"private": false,
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "Jason Dellaluce",
|
|
8
|
+
"email": "jason.dellaluce@studio.unibo.it"
|
|
9
|
+
},
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/tuProlog/2p-kt/issues",
|
|
12
|
+
"email": "giovanni.ciatto@unibo.it"
|
|
13
|
+
},
|
|
14
|
+
"contributors": [
|
|
15
|
+
{
|
|
16
|
+
"name": "Sofia Montebugnoli",
|
|
17
|
+
"email": "sofia.montebugnoli2@studio.unibo.it"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "Enrico Siboni",
|
|
21
|
+
"email": "enrico.siboni3@studio.unibo.it"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"name": "Giovanni Ciatto",
|
|
25
|
+
"email": "giovanni.ciatto@unibo.it",
|
|
26
|
+
"url": "https://about.me/gciatto"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "Andrea Giordano",
|
|
30
|
+
"email": "andrea.giordano5@studio.unibo.it"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "Silvia Lanzoni",
|
|
34
|
+
"email": "silvia.lanzoni5@studio.unibo.it"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"name": "Paolo Verdini",
|
|
38
|
+
"email": "paolo.verdini@studio.unibo.it"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "Lorenzo Rizzato",
|
|
42
|
+
"email": "lorenzo.rizzato@studio.unibo.it"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "Manuel Bonarrigo",
|
|
46
|
+
"email": "manuel.bonarrigo@studio.unibo.it"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"name": "Davide Greco",
|
|
50
|
+
"email": "davide.greco4@studio.unibo.it"
|
|
51
|
+
}
|
|
52
|
+
],
|
|
53
|
+
"repository": {
|
|
54
|
+
"type": "git",
|
|
55
|
+
"url": "git@github.com:tuProlog/2p-kt.git"
|
|
56
|
+
},
|
|
3
57
|
"main": "2p-full.js",
|
|
4
|
-
"
|
|
58
|
+
"version": "0.31.5-dev0n",
|
|
5
59
|
"name": "@tuprolog/2p-full"
|
|
6
60
|
}
|
package/2p-full.d.ts
DELETED
|
@@ -1,270 +0,0 @@
|
|
|
1
|
-
type Nullable<T> = T | null | undefined
|
|
2
|
-
export namespace org.gciatto.kt.math {
|
|
3
|
-
interface BigDecimal /* extends kotlin.Comparable<org.gciatto.kt.math.BigDecimal> */ {
|
|
4
|
-
readonly absoluteValue: org.gciatto.kt.math.BigDecimal;
|
|
5
|
-
readonly signum: number;
|
|
6
|
-
readonly scale: number;
|
|
7
|
-
readonly precision: number;
|
|
8
|
-
readonly unscaledValue: org.gciatto.kt.math.BigInteger;
|
|
9
|
-
plus(augend: Nullable<org.gciatto.kt.math.BigDecimal>): org.gciatto.kt.math.BigDecimal;
|
|
10
|
-
plusWithContext(augend: Nullable<org.gciatto.kt.math.BigDecimal>, mc: org.gciatto.kt.math.MathContext): org.gciatto.kt.math.BigDecimal;
|
|
11
|
-
minus(subtrahend: org.gciatto.kt.math.BigDecimal): org.gciatto.kt.math.BigDecimal;
|
|
12
|
-
minusWithContext(subtrahend: org.gciatto.kt.math.BigDecimal, mc: org.gciatto.kt.math.MathContext): org.gciatto.kt.math.BigDecimal;
|
|
13
|
-
times(multiplicand: Nullable<org.gciatto.kt.math.BigDecimal>): org.gciatto.kt.math.BigDecimal;
|
|
14
|
-
timesWithContext(multiplicand: org.gciatto.kt.math.BigDecimal, mc: org.gciatto.kt.math.MathContext): org.gciatto.kt.math.BigDecimal;
|
|
15
|
-
div(divisor: org.gciatto.kt.math.BigDecimal): org.gciatto.kt.math.BigDecimal;
|
|
16
|
-
divWithContext(divisor: org.gciatto.kt.math.BigDecimal, mc: org.gciatto.kt.math.MathContext): Nullable<org.gciatto.kt.math.BigDecimal>;
|
|
17
|
-
divideToIntegralValue(divisor: org.gciatto.kt.math.BigDecimal): org.gciatto.kt.math.BigDecimal;
|
|
18
|
-
divideToIntegralValueWithContext(divisor: org.gciatto.kt.math.BigDecimal, mc: org.gciatto.kt.math.MathContext): org.gciatto.kt.math.BigDecimal;
|
|
19
|
-
rem(divisor: org.gciatto.kt.math.BigDecimal): org.gciatto.kt.math.BigDecimal;
|
|
20
|
-
remWithContext(divisor: org.gciatto.kt.math.BigDecimal, mc: org.gciatto.kt.math.MathContext): org.gciatto.kt.math.BigDecimal;
|
|
21
|
-
divideAndRemainder(divisor: org.gciatto.kt.math.BigDecimal): any/* kotlin.Pair<org.gciatto.kt.math.BigDecimal, org.gciatto.kt.math.BigDecimal> */;
|
|
22
|
-
divideAndRemainderWithContext(divisor: org.gciatto.kt.math.BigDecimal, mc: org.gciatto.kt.math.MathContext): any/* kotlin.Pair<org.gciatto.kt.math.BigDecimal, org.gciatto.kt.math.BigDecimal> */;
|
|
23
|
-
sqrt(mc?: org.gciatto.kt.math.MathContext): org.gciatto.kt.math.BigDecimal;
|
|
24
|
-
pow(n: number): org.gciatto.kt.math.BigDecimal;
|
|
25
|
-
powWithContext(n: number, mc: org.gciatto.kt.math.MathContext): Nullable<org.gciatto.kt.math.BigDecimal>;
|
|
26
|
-
absoluteValueWithContext(mc: org.gciatto.kt.math.MathContext): Nullable<org.gciatto.kt.math.BigDecimal>;
|
|
27
|
-
unaryMinus(): org.gciatto.kt.math.BigDecimal;
|
|
28
|
-
unaryMinusWithContext(mc: org.gciatto.kt.math.MathContext): Nullable<org.gciatto.kt.math.BigDecimal>;
|
|
29
|
-
unaryPlus(): org.gciatto.kt.math.BigDecimal;
|
|
30
|
-
unaryPlusWithContext(mc: org.gciatto.kt.math.MathContext): Nullable<org.gciatto.kt.math.BigDecimal>;
|
|
31
|
-
round(mc: org.gciatto.kt.math.MathContext): Nullable<org.gciatto.kt.math.BigDecimal>;
|
|
32
|
-
setScaleRounding(newScale: number, roundingMode: org.gciatto.kt.math.RoundingMode): org.gciatto.kt.math.BigDecimal;
|
|
33
|
-
setScaleInt(newScale: number, roundingMode: number): org.gciatto.kt.math.BigDecimal;
|
|
34
|
-
setScale(newScale: number): org.gciatto.kt.math.BigDecimal;
|
|
35
|
-
movePointLeft(n: number): org.gciatto.kt.math.BigDecimal;
|
|
36
|
-
movePointRight(n: number): org.gciatto.kt.math.BigDecimal;
|
|
37
|
-
scaleByPowerOfTen(n: number): org.gciatto.kt.math.BigDecimal;
|
|
38
|
-
stripTrailingZeros(): org.gciatto.kt.math.BigDecimal;
|
|
39
|
-
min(val: org.gciatto.kt.math.BigDecimal): org.gciatto.kt.math.BigDecimal;
|
|
40
|
-
max(val: org.gciatto.kt.math.BigDecimal): org.gciatto.kt.math.BigDecimal;
|
|
41
|
-
toEngineeringString(): string;
|
|
42
|
-
toPlainString(): string;
|
|
43
|
-
toBigInteger(): org.gciatto.kt.math.BigInteger;
|
|
44
|
-
toBigIntegerExact(): org.gciatto.kt.math.BigInteger;
|
|
45
|
-
toLong(): any/* kotlin.Long */;
|
|
46
|
-
toLongExact(): any/* kotlin.Long */;
|
|
47
|
-
toInt(): number;
|
|
48
|
-
toByte(): number;
|
|
49
|
-
toChar(): any/* kotlin.Char */;
|
|
50
|
-
toShort(): number;
|
|
51
|
-
toIntExact(): number;
|
|
52
|
-
toShortExact(): number;
|
|
53
|
-
toByteExact(): number;
|
|
54
|
-
toFloat(): number;
|
|
55
|
-
toDouble(): number;
|
|
56
|
-
ulp(): org.gciatto.kt.math.BigDecimal;
|
|
57
|
-
readonly __doNotUseOrImplementIt: {
|
|
58
|
-
readonly "org.gciatto.kt.math.BigDecimal": unique symbol;
|
|
59
|
-
};
|
|
60
|
-
static get Companion(): {
|
|
61
|
-
get ZERO(): org.gciatto.kt.math.BigDecimal;
|
|
62
|
-
get ONE(): org.gciatto.kt.math.BigDecimal;
|
|
63
|
-
get TWO(): org.gciatto.kt.math.BigDecimal;
|
|
64
|
-
get TEN(): org.gciatto.kt.math.BigDecimal;
|
|
65
|
-
get ONE_TENTH(): org.gciatto.kt.math.BigDecimal;
|
|
66
|
-
get ONE_HALF(): org.gciatto.kt.math.BigDecimal;
|
|
67
|
-
get PI(): org.gciatto.kt.math.BigDecimal;
|
|
68
|
-
get E(): org.gciatto.kt.math.BigDecimal;
|
|
69
|
-
ofScaledLong(unscaledVal: any/* kotlin.Long */, scale: number): org.gciatto.kt.math.BigDecimal;
|
|
70
|
-
ofScaledLongWithPrecision(unscaledVal: any/* kotlin.Long */, scale: number, prec: number): org.gciatto.kt.math.BigDecimal;
|
|
71
|
-
ofInt(val: number): org.gciatto.kt.math.BigDecimal;
|
|
72
|
-
of(val: any/* kotlin.Long */): org.gciatto.kt.math.BigDecimal;
|
|
73
|
-
ofScaledBigIntegerWithPrecision(intVal: org.gciatto.kt.math.BigInteger, scale: number, prec: number): org.gciatto.kt.math.BigDecimal;
|
|
74
|
-
ofDouble(val: number, ctx?: Nullable<org.gciatto.kt.math.MathContext>): org.gciatto.kt.math.BigDecimal;
|
|
75
|
-
ofFloat(val: number, ctx?: Nullable<org.gciatto.kt.math.MathContext>): org.gciatto.kt.math.BigDecimal;
|
|
76
|
-
parse(val: string, ctx?: Nullable<org.gciatto.kt.math.MathContext>): org.gciatto.kt.math.BigDecimal;
|
|
77
|
-
ofBigInteger(val: org.gciatto.kt.math.BigInteger, ctx?: Nullable<org.gciatto.kt.math.MathContext>): org.gciatto.kt.math.BigDecimal;
|
|
78
|
-
ofIntWithContext(val: number, ctx: org.gciatto.kt.math.MathContext): org.gciatto.kt.math.BigDecimal;
|
|
79
|
-
ofWithContext(val: any/* kotlin.Long */, ctx: org.gciatto.kt.math.MathContext): org.gciatto.kt.math.BigDecimal;
|
|
80
|
-
};
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
export namespace org.gciatto.kt.math {
|
|
84
|
-
interface BigInteger /* extends kotlin.Comparable<org.gciatto.kt.math.BigInteger> */ {
|
|
85
|
-
readonly absoluteValue: org.gciatto.kt.math.BigInteger;
|
|
86
|
-
readonly signum: number;
|
|
87
|
-
readonly bitLength: number;
|
|
88
|
-
readonly bitCount: number;
|
|
89
|
-
rangeTo(endInclusive: org.gciatto.kt.math.BigInteger): org.gciatto.kt.math.BigIntegerRange;
|
|
90
|
-
rangeToInt(endInclusive: number): org.gciatto.kt.math.BigIntegerRange;
|
|
91
|
-
rangeToLong(endInclusive: any/* kotlin.Long */): org.gciatto.kt.math.BigIntegerRange;
|
|
92
|
-
nextProbablePrime(): org.gciatto.kt.math.BigInteger;
|
|
93
|
-
plus(other: org.gciatto.kt.math.BigInteger): org.gciatto.kt.math.BigInteger;
|
|
94
|
-
plusInt(other: number): org.gciatto.kt.math.BigInteger;
|
|
95
|
-
plusLong(other: any/* kotlin.Long */): org.gciatto.kt.math.BigInteger;
|
|
96
|
-
minus(other: org.gciatto.kt.math.BigInteger): org.gciatto.kt.math.BigInteger;
|
|
97
|
-
minusInt(other: number): org.gciatto.kt.math.BigInteger;
|
|
98
|
-
minusLong(other: any/* kotlin.Long */): org.gciatto.kt.math.BigInteger;
|
|
99
|
-
times(other: org.gciatto.kt.math.BigInteger): org.gciatto.kt.math.BigInteger;
|
|
100
|
-
timesInt(other: number): org.gciatto.kt.math.BigInteger;
|
|
101
|
-
timesLong(other: any/* kotlin.Long */): org.gciatto.kt.math.BigInteger;
|
|
102
|
-
div(other: org.gciatto.kt.math.BigInteger): org.gciatto.kt.math.BigInteger;
|
|
103
|
-
divInt(other: number): org.gciatto.kt.math.BigInteger;
|
|
104
|
-
divLong(other: any/* kotlin.Long */): org.gciatto.kt.math.BigInteger;
|
|
105
|
-
divideAndRemainder(other: org.gciatto.kt.math.BigInteger): Array<org.gciatto.kt.math.BigInteger>;
|
|
106
|
-
divideAndRemainderInt(other: number): Array<org.gciatto.kt.math.BigInteger>;
|
|
107
|
-
divideAndRemainderLong(other: any/* kotlin.Long */): Array<org.gciatto.kt.math.BigInteger>;
|
|
108
|
-
reminder(other: org.gciatto.kt.math.BigInteger): org.gciatto.kt.math.BigInteger;
|
|
109
|
-
reminderInt(other: number): org.gciatto.kt.math.BigInteger;
|
|
110
|
-
reminderLong(other: any/* kotlin.Long */): org.gciatto.kt.math.BigInteger;
|
|
111
|
-
pow(exponent: number): org.gciatto.kt.math.BigInteger;
|
|
112
|
-
sqrt(): org.gciatto.kt.math.BigInteger;
|
|
113
|
-
sqrtAndRemainder(): Array<org.gciatto.kt.math.BigInteger>;
|
|
114
|
-
gcd(other: org.gciatto.kt.math.BigInteger): org.gciatto.kt.math.BigInteger;
|
|
115
|
-
gcdInt(other: number): org.gciatto.kt.math.BigInteger;
|
|
116
|
-
gcdLong(other: any/* kotlin.Long */): org.gciatto.kt.math.BigInteger;
|
|
117
|
-
unaryMinus(): org.gciatto.kt.math.BigInteger;
|
|
118
|
-
unaryPlus(): org.gciatto.kt.math.BigInteger;
|
|
119
|
-
rem(modulus: org.gciatto.kt.math.BigInteger): org.gciatto.kt.math.BigInteger;
|
|
120
|
-
remInt(modulus: number): org.gciatto.kt.math.BigInteger;
|
|
121
|
-
remLong(modulus: any/* kotlin.Long */): org.gciatto.kt.math.BigInteger;
|
|
122
|
-
modPow(exponent: org.gciatto.kt.math.BigInteger, modulus: org.gciatto.kt.math.BigInteger): org.gciatto.kt.math.BigInteger;
|
|
123
|
-
modInverse(modulus: org.gciatto.kt.math.BigInteger): org.gciatto.kt.math.BigInteger;
|
|
124
|
-
modInverseInt(modulus: number): org.gciatto.kt.math.BigInteger;
|
|
125
|
-
modInverseLong(modulus: any/* kotlin.Long */): org.gciatto.kt.math.BigInteger;
|
|
126
|
-
shl(n: number): org.gciatto.kt.math.BigInteger;
|
|
127
|
-
shr(n: number): org.gciatto.kt.math.BigInteger;
|
|
128
|
-
and(other: org.gciatto.kt.math.BigInteger): org.gciatto.kt.math.BigInteger;
|
|
129
|
-
andInt(other: number): org.gciatto.kt.math.BigInteger;
|
|
130
|
-
andLong(other: any/* kotlin.Long */): org.gciatto.kt.math.BigInteger;
|
|
131
|
-
or(other: org.gciatto.kt.math.BigInteger): org.gciatto.kt.math.BigInteger;
|
|
132
|
-
orInt(other: number): org.gciatto.kt.math.BigInteger;
|
|
133
|
-
orLong(other: any/* kotlin.Long */): org.gciatto.kt.math.BigInteger;
|
|
134
|
-
xor(other: org.gciatto.kt.math.BigInteger): org.gciatto.kt.math.BigInteger;
|
|
135
|
-
xorInt(other: number): org.gciatto.kt.math.BigInteger;
|
|
136
|
-
xorLong(other: any/* kotlin.Long */): org.gciatto.kt.math.BigInteger;
|
|
137
|
-
not(): org.gciatto.kt.math.BigInteger;
|
|
138
|
-
andNot(other: org.gciatto.kt.math.BigInteger): org.gciatto.kt.math.BigInteger;
|
|
139
|
-
andNotInt(other: number): org.gciatto.kt.math.BigInteger;
|
|
140
|
-
andNotLong(other: any/* kotlin.Long */): org.gciatto.kt.math.BigInteger;
|
|
141
|
-
testBit(n: number): boolean;
|
|
142
|
-
get(n: number): boolean;
|
|
143
|
-
set(n: number, b: boolean): org.gciatto.kt.math.BigInteger;
|
|
144
|
-
setBit(n: number): org.gciatto.kt.math.BigInteger;
|
|
145
|
-
clearBit(n: number): org.gciatto.kt.math.BigInteger;
|
|
146
|
-
flipBit(n: number): org.gciatto.kt.math.BigInteger;
|
|
147
|
-
isProbablePrime(certainty: number): boolean;
|
|
148
|
-
equals(other: Nullable<any>): boolean;
|
|
149
|
-
min(other: org.gciatto.kt.math.BigInteger): org.gciatto.kt.math.BigInteger;
|
|
150
|
-
max(other: org.gciatto.kt.math.BigInteger): org.gciatto.kt.math.BigInteger;
|
|
151
|
-
hashCode(): number;
|
|
152
|
-
toStringWithRadix(radix: number): string;
|
|
153
|
-
toString(): string;
|
|
154
|
-
toByteArray(): Int8Array;
|
|
155
|
-
toInt(): number;
|
|
156
|
-
toLong(): any/* kotlin.Long */;
|
|
157
|
-
toByte(): number;
|
|
158
|
-
toChar(): any/* kotlin.Char */;
|
|
159
|
-
toShort(): number;
|
|
160
|
-
toFloat(): number;
|
|
161
|
-
toDouble(): number;
|
|
162
|
-
toLongExact(): any/* kotlin.Long */;
|
|
163
|
-
toIntExact(): number;
|
|
164
|
-
toShortExact(): number;
|
|
165
|
-
toByteExact(): number;
|
|
166
|
-
readonly __doNotUseOrImplementIt: {
|
|
167
|
-
readonly "org.gciatto.kt.math.BigInteger": unique symbol;
|
|
168
|
-
};
|
|
169
|
-
static get Companion(): {
|
|
170
|
-
get ZERO(): org.gciatto.kt.math.BigInteger;
|
|
171
|
-
get ONE(): org.gciatto.kt.math.BigInteger;
|
|
172
|
-
get TWO(): org.gciatto.kt.math.BigInteger;
|
|
173
|
-
get NEGATIVE_ONE(): org.gciatto.kt.math.BigInteger;
|
|
174
|
-
get TEN(): org.gciatto.kt.math.BigInteger;
|
|
175
|
-
probablePrime(bitLength: number, rnd: any/* kotlin.random.Random */): org.gciatto.kt.math.BigInteger;
|
|
176
|
-
ofLong(value: any/* kotlin.Long */): org.gciatto.kt.math.BigInteger;
|
|
177
|
-
of(value: number): org.gciatto.kt.math.BigInteger;
|
|
178
|
-
parse(value: string): org.gciatto.kt.math.BigInteger;
|
|
179
|
-
parseWithRadix(value: string, radix: number): org.gciatto.kt.math.BigInteger;
|
|
180
|
-
ofIntArray(value: Int32Array): org.gciatto.kt.math.BigInteger;
|
|
181
|
-
};
|
|
182
|
-
}
|
|
183
|
-
}
|
|
184
|
-
export namespace org.gciatto.kt.math {
|
|
185
|
-
class BigIntegerRange /* implements kotlin.ranges.ClosedRange<org.gciatto.kt.math.BigInteger>, kotlin.collections.Iterable<org.gciatto.kt.math.BigInteger> */ {
|
|
186
|
-
constructor(start: org.gciatto.kt.math.BigInteger, endInclusive: org.gciatto.kt.math.BigInteger);
|
|
187
|
-
component1(): org.gciatto.kt.math.BigInteger;
|
|
188
|
-
component2(): org.gciatto.kt.math.BigInteger;
|
|
189
|
-
copy(start?: org.gciatto.kt.math.BigInteger, endInclusive?: org.gciatto.kt.math.BigInteger): org.gciatto.kt.math.BigIntegerRange;
|
|
190
|
-
toString(): string;
|
|
191
|
-
hashCode(): number;
|
|
192
|
-
equals(other: Nullable<any>): boolean;
|
|
193
|
-
}
|
|
194
|
-
}
|
|
195
|
-
export namespace org.gciatto.kt.math {
|
|
196
|
-
class MathContext {
|
|
197
|
-
constructor(precision?: number, roundingMode?: org.gciatto.kt.math.RoundingMode);
|
|
198
|
-
get precision(): number;
|
|
199
|
-
get roundingMode(): org.gciatto.kt.math.RoundingMode;
|
|
200
|
-
component1(): number;
|
|
201
|
-
component2(): org.gciatto.kt.math.RoundingMode;
|
|
202
|
-
copy(precision?: number, roundingMode?: org.gciatto.kt.math.RoundingMode): org.gciatto.kt.math.MathContext;
|
|
203
|
-
toString(): string;
|
|
204
|
-
hashCode(): number;
|
|
205
|
-
equals(other: Nullable<any>): boolean;
|
|
206
|
-
static get Companion(): {
|
|
207
|
-
get UNLIMITED(): org.gciatto.kt.math.MathContext;
|
|
208
|
-
get DECIMAL32(): org.gciatto.kt.math.MathContext;
|
|
209
|
-
get DECIMAL64(): org.gciatto.kt.math.MathContext;
|
|
210
|
-
get DECIMAL128(): org.gciatto.kt.math.MathContext;
|
|
211
|
-
};
|
|
212
|
-
}
|
|
213
|
-
}
|
|
214
|
-
export namespace org.gciatto.kt.math {
|
|
215
|
-
abstract class RoundingMode {
|
|
216
|
-
private constructor();
|
|
217
|
-
get value(): number;
|
|
218
|
-
static get UP(): org.gciatto.kt.math.RoundingMode & {
|
|
219
|
-
get name(): "UP";
|
|
220
|
-
get ordinal(): 0;
|
|
221
|
-
};
|
|
222
|
-
static get DOWN(): org.gciatto.kt.math.RoundingMode & {
|
|
223
|
-
get name(): "DOWN";
|
|
224
|
-
get ordinal(): 1;
|
|
225
|
-
};
|
|
226
|
-
static get CEILING(): org.gciatto.kt.math.RoundingMode & {
|
|
227
|
-
get name(): "CEILING";
|
|
228
|
-
get ordinal(): 2;
|
|
229
|
-
};
|
|
230
|
-
static get FLOOR(): org.gciatto.kt.math.RoundingMode & {
|
|
231
|
-
get name(): "FLOOR";
|
|
232
|
-
get ordinal(): 3;
|
|
233
|
-
};
|
|
234
|
-
static get HALF_UP(): org.gciatto.kt.math.RoundingMode & {
|
|
235
|
-
get name(): "HALF_UP";
|
|
236
|
-
get ordinal(): 4;
|
|
237
|
-
};
|
|
238
|
-
static get HALF_DOWN(): org.gciatto.kt.math.RoundingMode & {
|
|
239
|
-
get name(): "HALF_DOWN";
|
|
240
|
-
get ordinal(): 5;
|
|
241
|
-
};
|
|
242
|
-
static get HALF_EVEN(): org.gciatto.kt.math.RoundingMode & {
|
|
243
|
-
get name(): "HALF_EVEN";
|
|
244
|
-
get ordinal(): 6;
|
|
245
|
-
};
|
|
246
|
-
static get UNNECESSARY(): org.gciatto.kt.math.RoundingMode & {
|
|
247
|
-
get name(): "UNNECESSARY";
|
|
248
|
-
get ordinal(): 7;
|
|
249
|
-
};
|
|
250
|
-
static values(): Array<org.gciatto.kt.math.RoundingMode>;
|
|
251
|
-
static valueOf(value: string): org.gciatto.kt.math.RoundingMode;
|
|
252
|
-
get name(): "UP" | "DOWN" | "CEILING" | "FLOOR" | "HALF_UP" | "HALF_DOWN" | "HALF_EVEN" | "UNNECESSARY";
|
|
253
|
-
get ordinal(): 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
254
|
-
static get Companion(): {
|
|
255
|
-
valueOfInt(rm: number): org.gciatto.kt.math.RoundingMode;
|
|
256
|
-
};
|
|
257
|
-
}
|
|
258
|
-
}
|
|
259
|
-
export namespace it.unibo.tuprolog.solve.classic {
|
|
260
|
-
const ClassicSolverFactory: {
|
|
261
|
-
} & any/* it.unibo.tuprolog.solve.SolverFactory */;
|
|
262
|
-
}
|
|
263
|
-
export namespace it.unibo.tuprolog.solve.problog {
|
|
264
|
-
const ProblogSolverFactory: {
|
|
265
|
-
} & any/* it.unibo.tuprolog.solve.SolverFactory */;
|
|
266
|
-
}
|
|
267
|
-
export namespace it.unibo.tuprolog.solve.streams {
|
|
268
|
-
const StreamsSolverFactory: {
|
|
269
|
-
} & any/* it.unibo.tuprolog.solve.SolverFactory */;
|
|
270
|
-
}
|