@tuprolog/2p-full 0.31.21 → 0.32.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/2p-bdd.js +198 -215
- package/2p-bdd.js.map +1 -1
- package/2p-core.js +3282 -5092
- package/2p-core.js.map +1 -1
- package/2p-full.js +6 -6
- package/2p-io-lib.js +874 -1121
- package/2p-io-lib.js.map +1 -1
- package/2p-oop-lib.js +1140 -1327
- package/2p-oop-lib.js.map +1 -1
- package/2p-parser-core.js +438 -609
- package/2p-parser-core.js.map +1 -1
- package/2p-parser-js.js +7 -8
- package/2p-parser-js.js.map +1 -1
- package/2p-parser-theory.js +35 -39
- package/2p-parser-theory.js.map +1 -1
- package/2p-repl.js +152 -179
- package/2p-repl.js.map +1 -1
- package/2p-solve-classic.js +1141 -1371
- package/2p-solve-classic.js.map +1 -1
- package/2p-solve-plp.js +9 -14
- package/2p-solve-plp.js.map +1 -1
- package/2p-solve-problog.js +1689 -1981
- package/2p-solve-problog.js.map +1 -1
- package/2p-solve-streams.js +1206 -1372
- package/2p-solve-streams.js.map +1 -1
- package/2p-solve.js +4879 -6147
- package/2p-solve.js.map +1 -1
- package/2p-theory.js +1820 -2246
- package/2p-theory.js.map +1 -1
- package/2p-unify.js +290 -330
- package/2p-unify.js.map +1 -1
- package/2p-utils.js +483 -557
- package/2p-utils.js.map +1 -1
- package/clikt-clikt-js-ir.js +2243 -3266
- package/clikt-clikt-js-ir.js.map +1 -1
- package/{kotlin-kotlin-stdlib-js-ir.js → kotlin-kotlin-stdlib.js} +9601 -10371
- package/kotlin-kotlin-stdlib.js.map +1 -0
- package/kotlin_org_jetbrains_kotlin_kotlin_dom_api_compat.js +15 -0
- package/kotlin_org_jetbrains_kotlin_kotlin_dom_api_compat.js.map +1 -0
- package/kt-math.js +2926 -4247
- package/kt-math.js.map +1 -1
- package/package.json +9 -3
- package/kotlin-kotlin-stdlib-js-ir.js.map +0 -1
package/2p-full.js
CHANGED
|
@@ -5,21 +5,21 @@
|
|
|
5
5
|
factory(module.exports, require('./2p-repl.js'), require('./kt-math.js'), require('./2p-solve-classic.js'), require('./2p-solve-problog.js'), require('./2p-solve-streams.js'));
|
|
6
6
|
else {
|
|
7
7
|
if (typeof this['2p-repl'] === 'undefined') {
|
|
8
|
-
throw new Error("Error loading module '
|
|
8
|
+
throw new Error("Error loading module 'it.unibo.tuprolog:full'. Its dependency '2p-repl' was not found. Please, check whether '2p-repl' is loaded prior to 'it.unibo.tuprolog:full'.");
|
|
9
9
|
}
|
|
10
10
|
if (typeof this['kt-math'] === 'undefined') {
|
|
11
|
-
throw new Error("Error loading module '
|
|
11
|
+
throw new Error("Error loading module 'it.unibo.tuprolog:full'. Its dependency 'kt-math' was not found. Please, check whether 'kt-math' is loaded prior to 'it.unibo.tuprolog:full'.");
|
|
12
12
|
}
|
|
13
13
|
if (typeof this['2p-solve-classic'] === 'undefined') {
|
|
14
|
-
throw new Error("Error loading module '
|
|
14
|
+
throw new Error("Error loading module 'it.unibo.tuprolog:full'. Its dependency '2p-solve-classic' was not found. Please, check whether '2p-solve-classic' is loaded prior to 'it.unibo.tuprolog:full'.");
|
|
15
15
|
}
|
|
16
16
|
if (typeof this['2p-solve-problog'] === 'undefined') {
|
|
17
|
-
throw new Error("Error loading module '
|
|
17
|
+
throw new Error("Error loading module 'it.unibo.tuprolog:full'. Its dependency '2p-solve-problog' was not found. Please, check whether '2p-solve-problog' is loaded prior to 'it.unibo.tuprolog:full'.");
|
|
18
18
|
}
|
|
19
19
|
if (typeof this['2p-solve-streams'] === 'undefined') {
|
|
20
|
-
throw new Error("Error loading module '
|
|
20
|
+
throw new Error("Error loading module 'it.unibo.tuprolog:full'. Its dependency '2p-solve-streams' was not found. Please, check whether '2p-solve-streams' is loaded prior to 'it.unibo.tuprolog:full'.");
|
|
21
21
|
}
|
|
22
|
-
root['
|
|
22
|
+
root['it.unibo.tuprolog:full'] = factory(typeof this['it.unibo.tuprolog:full'] === 'undefined' ? {} : this['it.unibo.tuprolog:full'], this['2p-repl'], this['kt-math'], this['2p-solve-classic'], this['2p-solve-problog'], this['2p-solve-streams']);
|
|
23
23
|
}
|
|
24
24
|
}(this, function (_, kotlin_it_unibo_tuprolog_repl, kotlin_io_github_gciatto_kt_math, kotlin_it_unibo_tuprolog_solve_classic, kotlin_it_unibo_tuprolog_solve_problog, kotlin_it_unibo_tuprolog_solve_streams) {
|
|
25
25
|
'use strict';
|