@stevenvo780/st-lang 4.5.0 → 4.5.2

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.
Files changed (286) hide show
  1. package/README.md +78 -37
  2. package/dist/bdd/index.d.ts +4 -0
  3. package/dist/bdd/index.d.ts.map +1 -0
  4. package/dist/bdd/index.js +29 -0
  5. package/dist/bdd/index.js.map +1 -0
  6. package/dist/bdd/manager.d.ts +122 -0
  7. package/dist/bdd/manager.d.ts.map +1 -0
  8. package/dist/bdd/manager.js +524 -0
  9. package/dist/bdd/manager.js.map +1 -0
  10. package/dist/bdd/types.d.ts +20 -0
  11. package/dist/bdd/types.d.ts.map +1 -0
  12. package/dist/bdd/types.js +28 -0
  13. package/dist/bdd/types.js.map +1 -0
  14. package/dist/game-theory/common-games.d.ts +50 -0
  15. package/dist/game-theory/common-games.d.ts.map +1 -0
  16. package/dist/game-theory/common-games.js +112 -0
  17. package/dist/game-theory/common-games.js.map +1 -0
  18. package/dist/game-theory/dominance.d.ts +26 -0
  19. package/dist/game-theory/dominance.d.ts.map +1 -0
  20. package/dist/game-theory/dominance.js +203 -0
  21. package/dist/game-theory/dominance.js.map +1 -0
  22. package/dist/game-theory/index.d.ts +8 -0
  23. package/dist/game-theory/index.d.ts.map +1 -0
  24. package/dist/game-theory/index.js +47 -0
  25. package/dist/game-theory/index.js.map +1 -0
  26. package/dist/game-theory/lemke-howson.d.ts +3 -0
  27. package/dist/game-theory/lemke-howson.d.ts.map +1 -0
  28. package/dist/game-theory/lemke-howson.js +269 -0
  29. package/dist/game-theory/lemke-howson.js.map +1 -0
  30. package/dist/game-theory/linalg.d.ts +7 -0
  31. package/dist/game-theory/linalg.d.ts.map +1 -0
  32. package/dist/game-theory/linalg.js +69 -0
  33. package/dist/game-theory/linalg.js.map +1 -0
  34. package/dist/game-theory/pure-nash.d.ts +3 -0
  35. package/dist/game-theory/pure-nash.d.ts.map +1 -0
  36. package/dist/game-theory/pure-nash.js +86 -0
  37. package/dist/game-theory/pure-nash.js.map +1 -0
  38. package/dist/game-theory/support-enumeration.d.ts +3 -0
  39. package/dist/game-theory/support-enumeration.d.ts.map +1 -0
  40. package/dist/game-theory/support-enumeration.js +214 -0
  41. package/dist/game-theory/support-enumeration.js.map +1 -0
  42. package/dist/game-theory/types.d.ts +57 -0
  43. package/dist/game-theory/types.d.ts.map +1 -0
  44. package/dist/game-theory/types.js +191 -0
  45. package/dist/game-theory/types.js.map +1 -0
  46. package/dist/index.d.ts +19 -1
  47. package/dist/index.d.ts.map +1 -1
  48. package/dist/index.js +75 -1
  49. package/dist/index.js.map +1 -1
  50. package/dist/information-theory/index.d.ts +29 -0
  51. package/dist/information-theory/index.d.ts.map +1 -0
  52. package/dist/information-theory/index.js +323 -0
  53. package/dist/information-theory/index.js.map +1 -0
  54. package/dist/namespaces/logic.d.ts +42 -0
  55. package/dist/namespaces/logic.d.ts.map +1 -0
  56. package/dist/namespaces/logic.js +112 -0
  57. package/dist/namespaces/logic.js.map +1 -0
  58. package/dist/namespaces/proof-systems.d.ts +18 -0
  59. package/dist/namespaces/proof-systems.d.ts.map +1 -0
  60. package/dist/namespaces/proof-systems.js +59 -0
  61. package/dist/namespaces/proof-systems.js.map +1 -0
  62. package/dist/namespaces/reasoning.d.ts +26 -0
  63. package/dist/namespaces/reasoning.d.ts.map +1 -0
  64. package/dist/namespaces/reasoning.js +72 -0
  65. package/dist/namespaces/reasoning.js.map +1 -0
  66. package/dist/namespaces/semantics.d.ts +21 -0
  67. package/dist/namespaces/semantics.d.ts.map +1 -0
  68. package/dist/namespaces/semantics.js +64 -0
  69. package/dist/namespaces/semantics.js.map +1 -0
  70. package/dist/namespaces/solvers.d.ts +22 -0
  71. package/dist/namespaces/solvers.d.ts.map +1 -0
  72. package/dist/namespaces/solvers.js +66 -0
  73. package/dist/namespaces/solvers.js.map +1 -0
  74. package/dist/namespaces/type-theory.d.ts +22 -0
  75. package/dist/namespaces/type-theory.d.ts.map +1 -0
  76. package/dist/namespaces/type-theory.js +65 -0
  77. package/dist/namespaces/type-theory.js.map +1 -0
  78. package/dist/optimization/branch-and-bound.d.ts +11 -0
  79. package/dist/optimization/branch-and-bound.d.ts.map +1 -0
  80. package/dist/optimization/branch-and-bound.js +311 -0
  81. package/dist/optimization/branch-and-bound.js.map +1 -0
  82. package/dist/optimization/index.d.ts +5 -0
  83. package/dist/optimization/index.d.ts.map +1 -0
  84. package/dist/optimization/index.js +20 -0
  85. package/dist/optimization/index.js.map +1 -0
  86. package/dist/optimization/simplex.d.ts +8 -0
  87. package/dist/optimization/simplex.d.ts.map +1 -0
  88. package/dist/optimization/simplex.js +408 -0
  89. package/dist/optimization/simplex.js.map +1 -0
  90. package/dist/optimization/standard-form.d.ts +11 -0
  91. package/dist/optimization/standard-form.d.ts.map +1 -0
  92. package/dist/optimization/standard-form.js +112 -0
  93. package/dist/optimization/standard-form.js.map +1 -0
  94. package/dist/optimization/types.d.ts +44 -0
  95. package/dist/optimization/types.d.ts.map +1 -0
  96. package/dist/optimization/types.js +15 -0
  97. package/dist/optimization/types.js.map +1 -0
  98. package/dist/profiles/hol/connectives.d.ts +46 -0
  99. package/dist/profiles/hol/connectives.d.ts.map +1 -0
  100. package/dist/profiles/hol/connectives.js +104 -0
  101. package/dist/profiles/hol/connectives.js.map +1 -0
  102. package/dist/profiles/hol/index.d.ts +7 -0
  103. package/dist/profiles/hol/index.d.ts.map +1 -0
  104. package/dist/profiles/hol/index.js +77 -0
  105. package/dist/profiles/hol/index.js.map +1 -0
  106. package/dist/profiles/hol/rules.d.ts +31 -0
  107. package/dist/profiles/hol/rules.d.ts.map +1 -0
  108. package/dist/profiles/hol/rules.js +258 -0
  109. package/dist/profiles/hol/rules.js.map +1 -0
  110. package/dist/profiles/hol/term.d.ts +52 -0
  111. package/dist/profiles/hol/term.d.ts.map +1 -0
  112. package/dist/profiles/hol/term.js +345 -0
  113. package/dist/profiles/hol/term.js.map +1 -0
  114. package/dist/profiles/hol/type-system.d.ts +38 -0
  115. package/dist/profiles/hol/type-system.d.ts.map +1 -0
  116. package/dist/profiles/hol/type-system.js +133 -0
  117. package/dist/profiles/hol/type-system.js.map +1 -0
  118. package/dist/profiles/hol/types.d.ts +59 -0
  119. package/dist/profiles/hol/types.d.ts.map +1 -0
  120. package/dist/profiles/hol/types.js +26 -0
  121. package/dist/profiles/hol/types.js.map +1 -0
  122. package/dist/smt-lib/ast.d.ts +138 -0
  123. package/dist/smt-lib/ast.d.ts.map +1 -0
  124. package/dist/smt-lib/ast.js +73 -0
  125. package/dist/smt-lib/ast.js.map +1 -0
  126. package/dist/smt-lib/emitter.d.ts +12 -0
  127. package/dist/smt-lib/emitter.d.ts.map +1 -0
  128. package/dist/smt-lib/emitter.js +174 -0
  129. package/dist/smt-lib/emitter.js.map +1 -0
  130. package/dist/smt-lib/index.d.ts +6 -0
  131. package/dist/smt-lib/index.d.ts.map +1 -0
  132. package/dist/smt-lib/index.js +31 -0
  133. package/dist/smt-lib/index.js.map +1 -0
  134. package/dist/smt-lib/parser.d.ts +13 -0
  135. package/dist/smt-lib/parser.d.ts.map +1 -0
  136. package/dist/smt-lib/parser.js +614 -0
  137. package/dist/smt-lib/parser.js.map +1 -0
  138. package/dist/smt-lib/tokenizer.d.ts +16 -0
  139. package/dist/smt-lib/tokenizer.d.ts.map +1 -0
  140. package/dist/smt-lib/tokenizer.js +234 -0
  141. package/dist/smt-lib/tokenizer.js.map +1 -0
  142. package/dist/tests/api/namespaces.test.d.ts +9 -0
  143. package/dist/tests/api/namespaces.test.d.ts.map +1 -0
  144. package/dist/tests/api/namespaces.test.js +218 -0
  145. package/dist/tests/api/namespaces.test.js.map +1 -0
  146. package/dist/tests/bdd/manager.test.d.ts +2 -0
  147. package/dist/tests/bdd/manager.test.d.ts.map +1 -0
  148. package/dist/tests/bdd/manager.test.js +472 -0
  149. package/dist/tests/bdd/manager.test.js.map +1 -0
  150. package/dist/tests/game-theory/game-theory.test.d.ts +2 -0
  151. package/dist/tests/game-theory/game-theory.test.d.ts.map +1 -0
  152. package/dist/tests/game-theory/game-theory.test.js +252 -0
  153. package/dist/tests/game-theory/game-theory.test.js.map +1 -0
  154. package/dist/tests/hol/hol.test.d.ts +2 -0
  155. package/dist/tests/hol/hol.test.d.ts.map +1 -0
  156. package/dist/tests/hol/hol.test.js +340 -0
  157. package/dist/tests/hol/hol.test.js.map +1 -0
  158. package/dist/tests/information-theory/information-theory.test.d.ts +2 -0
  159. package/dist/tests/information-theory/information-theory.test.d.ts.map +1 -0
  160. package/dist/tests/information-theory/information-theory.test.js +291 -0
  161. package/dist/tests/information-theory/information-theory.test.js.map +1 -0
  162. package/dist/tests/optimization/ilp.test.d.ts +2 -0
  163. package/dist/tests/optimization/ilp.test.d.ts.map +1 -0
  164. package/dist/tests/optimization/ilp.test.js +204 -0
  165. package/dist/tests/optimization/ilp.test.js.map +1 -0
  166. package/dist/tests/optimization/lp.test.d.ts +2 -0
  167. package/dist/tests/optimization/lp.test.d.ts.map +1 -0
  168. package/dist/tests/optimization/lp.test.js +224 -0
  169. package/dist/tests/optimization/lp.test.js.map +1 -0
  170. package/dist/tests/properties/agm.property.test.d.ts +2 -0
  171. package/dist/tests/properties/agm.property.test.d.ts.map +1 -0
  172. package/dist/tests/properties/agm.property.test.js +75 -0
  173. package/dist/tests/properties/agm.property.test.js.map +1 -0
  174. package/dist/tests/properties/anti-unification.property.test.d.ts +2 -0
  175. package/dist/tests/properties/anti-unification.property.test.d.ts.map +1 -0
  176. package/dist/tests/properties/anti-unification.property.test.js +43 -0
  177. package/dist/tests/properties/anti-unification.property.test.js.map +1 -0
  178. package/dist/tests/properties/argumentation.property.test.d.ts +2 -0
  179. package/dist/tests/properties/argumentation.property.test.d.ts.map +1 -0
  180. package/dist/tests/properties/argumentation.property.test.js +51 -0
  181. package/dist/tests/properties/argumentation.property.test.js.map +1 -0
  182. package/dist/tests/properties/bayesian.property.test.d.ts +2 -0
  183. package/dist/tests/properties/bayesian.property.test.d.ts.map +1 -0
  184. package/dist/tests/properties/bayesian.property.test.js +32 -0
  185. package/dist/tests/properties/bayesian.property.test.js.map +1 -0
  186. package/dist/tests/properties/bisimulation.property.test.d.ts +2 -0
  187. package/dist/tests/properties/bisimulation.property.test.d.ts.map +1 -0
  188. package/dist/tests/properties/bisimulation.property.test.js +50 -0
  189. package/dist/tests/properties/bisimulation.property.test.js.map +1 -0
  190. package/dist/tests/properties/cdcl.property.test.d.ts +2 -0
  191. package/dist/tests/properties/cdcl.property.test.d.ts.map +1 -0
  192. package/dist/tests/properties/cdcl.property.test.js +70 -0
  193. package/dist/tests/properties/cdcl.property.test.js.map +1 -0
  194. package/dist/tests/properties/coinduction.property.test.d.ts +2 -0
  195. package/dist/tests/properties/coinduction.property.test.d.ts.map +1 -0
  196. package/dist/tests/properties/coinduction.property.test.js +34 -0
  197. package/dist/tests/properties/coinduction.property.test.js.map +1 -0
  198. package/dist/tests/properties/constructive-reals.property.test.d.ts +2 -0
  199. package/dist/tests/properties/constructive-reals.property.test.d.ts.map +1 -0
  200. package/dist/tests/properties/constructive-reals.property.test.js +59 -0
  201. package/dist/tests/properties/constructive-reals.property.test.js.map +1 -0
  202. package/dist/tests/properties/csp.property.test.d.ts +2 -0
  203. package/dist/tests/properties/csp.property.test.d.ts.map +1 -0
  204. package/dist/tests/properties/csp.property.test.js +58 -0
  205. package/dist/tests/properties/csp.property.test.js.map +1 -0
  206. package/dist/tests/properties/generators.d.ts +78 -0
  207. package/dist/tests/properties/generators.d.ts.map +1 -0
  208. package/dist/tests/properties/generators.js +348 -0
  209. package/dist/tests/properties/generators.js.map +1 -0
  210. package/dist/tests/properties/ho-unify.property.test.d.ts +2 -0
  211. package/dist/tests/properties/ho-unify.property.test.d.ts.map +1 -0
  212. package/dist/tests/properties/ho-unify.property.test.js +46 -0
  213. package/dist/tests/properties/ho-unify.property.test.js.map +1 -0
  214. package/dist/tests/properties/hyperreal.property.test.d.ts +2 -0
  215. package/dist/tests/properties/hyperreal.property.test.d.ts.map +1 -0
  216. package/dist/tests/properties/hyperreal.property.test.js +33 -0
  217. package/dist/tests/properties/hyperreal.property.test.js.map +1 -0
  218. package/dist/tests/properties/intuit-nj.property.test.d.ts +2 -0
  219. package/dist/tests/properties/intuit-nj.property.test.d.ts.map +1 -0
  220. package/dist/tests/properties/intuit-nj.property.test.js +57 -0
  221. package/dist/tests/properties/intuit-nj.property.test.js.map +1 -0
  222. package/dist/tests/properties/lambda-calc.property.test.d.ts +2 -0
  223. package/dist/tests/properties/lambda-calc.property.test.d.ts.map +1 -0
  224. package/dist/tests/properties/lambda-calc.property.test.js +35 -0
  225. package/dist/tests/properties/lambda-calc.property.test.js.map +1 -0
  226. package/dist/tests/properties/mln.property.test.d.ts +2 -0
  227. package/dist/tests/properties/mln.property.test.d.ts.map +1 -0
  228. package/dist/tests/properties/mln.property.test.js +41 -0
  229. package/dist/tests/properties/mln.property.test.js.map +1 -0
  230. package/dist/tests/properties/mltt.property.test.d.ts +2 -0
  231. package/dist/tests/properties/mltt.property.test.d.ts.map +1 -0
  232. package/dist/tests/properties/mltt.property.test.js +33 -0
  233. package/dist/tests/properties/mltt.property.test.js.map +1 -0
  234. package/dist/tests/properties/nbe.property.test.d.ts +2 -0
  235. package/dist/tests/properties/nbe.property.test.d.ts.map +1 -0
  236. package/dist/tests/properties/nbe.property.test.js +44 -0
  237. package/dist/tests/properties/nbe.property.test.js.map +1 -0
  238. package/dist/tests/properties/planning.property.test.d.ts +2 -0
  239. package/dist/tests/properties/planning.property.test.d.ts.map +1 -0
  240. package/dist/tests/properties/planning.property.test.js +51 -0
  241. package/dist/tests/properties/planning.property.test.js.map +1 -0
  242. package/dist/tests/properties/profile-bridge.property.test.d.ts +2 -0
  243. package/dist/tests/properties/profile-bridge.property.test.d.ts.map +1 -0
  244. package/dist/tests/properties/profile-bridge.property.test.js +71 -0
  245. package/dist/tests/properties/profile-bridge.property.test.js.map +1 -0
  246. package/dist/tests/properties/refinement-types.property.test.d.ts +2 -0
  247. package/dist/tests/properties/refinement-types.property.test.d.ts.map +1 -0
  248. package/dist/tests/properties/refinement-types.property.test.js +37 -0
  249. package/dist/tests/properties/refinement-types.property.test.js.map +1 -0
  250. package/dist/tests/properties/sequent-g3.property.test.d.ts +2 -0
  251. package/dist/tests/properties/sequent-g3.property.test.d.ts.map +1 -0
  252. package/dist/tests/properties/sequent-g3.property.test.js +34 -0
  253. package/dist/tests/properties/sequent-g3.property.test.js.map +1 -0
  254. package/dist/tests/properties/symbolic-diff.property.test.d.ts +2 -0
  255. package/dist/tests/properties/symbolic-diff.property.test.d.ts.map +1 -0
  256. package/dist/tests/properties/symbolic-diff.property.test.js +49 -0
  257. package/dist/tests/properties/symbolic-diff.property.test.js.map +1 -0
  258. package/dist/tests/properties/system-f.property.test.d.ts +2 -0
  259. package/dist/tests/properties/system-f.property.test.d.ts.map +1 -0
  260. package/dist/tests/properties/system-f.property.test.js +37 -0
  261. package/dist/tests/properties/system-f.property.test.js.map +1 -0
  262. package/dist/tests/properties/theorem-cache.property.test.d.ts +2 -0
  263. package/dist/tests/properties/theorem-cache.property.test.d.ts.map +1 -0
  264. package/dist/tests/properties/theorem-cache.property.test.js +38 -0
  265. package/dist/tests/properties/theorem-cache.property.test.js.map +1 -0
  266. package/dist/tests/properties/trs.property.test.d.ts +2 -0
  267. package/dist/tests/properties/trs.property.test.d.ts.map +1 -0
  268. package/dist/tests/properties/trs.property.test.js +34 -0
  269. package/dist/tests/properties/trs.property.test.js.map +1 -0
  270. package/dist/tests/properties/unification.property.test.d.ts +2 -0
  271. package/dist/tests/properties/unification.property.test.d.ts.map +1 -0
  272. package/dist/tests/properties/unification.property.test.js +42 -0
  273. package/dist/tests/properties/unification.property.test.js.map +1 -0
  274. package/dist/tests/smt-lib/emitter.test.d.ts +2 -0
  275. package/dist/tests/smt-lib/emitter.test.d.ts.map +1 -0
  276. package/dist/tests/smt-lib/emitter.test.js +155 -0
  277. package/dist/tests/smt-lib/emitter.test.js.map +1 -0
  278. package/dist/tests/smt-lib/parser.test.d.ts +2 -0
  279. package/dist/tests/smt-lib/parser.test.d.ts.map +1 -0
  280. package/dist/tests/smt-lib/parser.test.js +164 -0
  281. package/dist/tests/smt-lib/parser.test.js.map +1 -0
  282. package/dist/tests/smt-lib/tokenizer.test.d.ts +2 -0
  283. package/dist/tests/smt-lib/tokenizer.test.d.ts.map +1 -0
  284. package/dist/tests/smt-lib/tokenizer.test.js +59 -0
  285. package/dist/tests/smt-lib/tokenizer.test.js.map +1 -0
  286. package/package.json +3 -1
@@ -0,0 +1,112 @@
1
+ "use strict";
2
+ /**
3
+ * Namespace: Logic
4
+ *
5
+ * Agrupa los perfiles lógicos disponibles en ST. Cada sub-namespace expone
6
+ * los símbolos del módulo correspondiente sin colisiones de nombres entre
7
+ * lógicas (CTL.Formula vs LTL.Formula, etc).
8
+ *
9
+ * Importa así:
10
+ * import { Logic } from '@stevenvo780/st-lang';
11
+ * Logic.modal.s5.isValid(formula);
12
+ * Logic.ctl.modelCheckCTL(kripke, formula);
13
+ */
14
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
15
+ if (k2 === undefined) k2 = k;
16
+ var desc = Object.getOwnPropertyDescriptor(m, k);
17
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
18
+ desc = { enumerable: true, get: function() { return m[k]; } };
19
+ }
20
+ Object.defineProperty(o, k2, desc);
21
+ }) : (function(o, m, k, k2) {
22
+ if (k2 === undefined) k2 = k;
23
+ o[k2] = m[k];
24
+ }));
25
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
26
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
27
+ }) : function(o, v) {
28
+ o["default"] = v;
29
+ });
30
+ var __importStar = (this && this.__importStar) || (function () {
31
+ var ownKeys = function(o) {
32
+ ownKeys = Object.getOwnPropertyNames || function (o) {
33
+ var ar = [];
34
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
35
+ return ar;
36
+ };
37
+ return ownKeys(o);
38
+ };
39
+ return function (mod) {
40
+ if (mod && mod.__esModule) return mod;
41
+ var result = {};
42
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
43
+ __setModuleDefault(result, mod);
44
+ return result;
45
+ };
46
+ })();
47
+ Object.defineProperty(exports, "__esModule", { value: true });
48
+ exports.PARALLEL_THRESHOLD = exports.workersAvailable = exports.dpllAsync = exports.dpll = exports.cdclAsync = exports.cdcl = exports.arithmetic = exports.substructural = exports.manyValued = exports.defaultLogic = exports.intuitNJ = exports.sequentLK = exports.sequentG3 = exports.modalAxioms = exports.descriptionLogic = exports.hybrid = exports.muCalculus = exports.ltl = exports.ctl = exports.ProbabilisticBasic = exports.AristotelianSyllogistic = exports.DeonticStandard = exports.EpistemicS5 = exports.TemporalLTL = exports.IntuitionisticPropositional = exports.ParaconsistentBelnap = exports.ModalK = exports.ClassicalFirstOrder = exports.formulaToString = exports.ClassicalPropositional = exports.registry = exports.ProfileRegistry = void 0;
49
+ // Perfil registry + interfaces compartidas
50
+ var interface_1 = require("../profiles/interface");
51
+ Object.defineProperty(exports, "ProfileRegistry", { enumerable: true, get: function () { return interface_1.ProfileRegistry; } });
52
+ Object.defineProperty(exports, "registry", { enumerable: true, get: function () { return interface_1.registry; } });
53
+ // Perfiles "clase suelta" (un solo símbolo)
54
+ var propositional_1 = require("../profiles/classical/propositional");
55
+ Object.defineProperty(exports, "ClassicalPropositional", { enumerable: true, get: function () { return propositional_1.ClassicalPropositional; } });
56
+ Object.defineProperty(exports, "formulaToString", { enumerable: true, get: function () { return propositional_1.formulaToString; } });
57
+ var first_order_1 = require("../profiles/classical/first-order");
58
+ Object.defineProperty(exports, "ClassicalFirstOrder", { enumerable: true, get: function () { return first_order_1.ClassicalFirstOrder; } });
59
+ var k_1 = require("../profiles/modal/k");
60
+ Object.defineProperty(exports, "ModalK", { enumerable: true, get: function () { return k_1.ModalK; } });
61
+ var belnap_1 = require("../profiles/paraconsistent/belnap");
62
+ Object.defineProperty(exports, "ParaconsistentBelnap", { enumerable: true, get: function () { return belnap_1.ParaconsistentBelnap; } });
63
+ var propositional_2 = require("../profiles/intuitionistic/propositional");
64
+ Object.defineProperty(exports, "IntuitionisticPropositional", { enumerable: true, get: function () { return propositional_2.IntuitionisticPropositional; } });
65
+ var ltl_1 = require("../profiles/temporal/ltl");
66
+ Object.defineProperty(exports, "TemporalLTL", { enumerable: true, get: function () { return ltl_1.TemporalLTL; } });
67
+ var s5_1 = require("../profiles/epistemic/s5");
68
+ Object.defineProperty(exports, "EpistemicS5", { enumerable: true, get: function () { return s5_1.EpistemicS5; } });
69
+ var standard_1 = require("../profiles/deontic/standard");
70
+ Object.defineProperty(exports, "DeonticStandard", { enumerable: true, get: function () { return standard_1.DeonticStandard; } });
71
+ var syllogistic_1 = require("../profiles/aristotelian/syllogistic");
72
+ Object.defineProperty(exports, "AristotelianSyllogistic", { enumerable: true, get: function () { return syllogistic_1.AristotelianSyllogistic; } });
73
+ var basic_1 = require("../profiles/probabilistic/basic");
74
+ Object.defineProperty(exports, "ProbabilisticBasic", { enumerable: true, get: function () { return basic_1.ProbabilisticBasic; } });
75
+ // Sub-namespaces (cada perfil con barrel propio)
76
+ const ctl = __importStar(require("../profiles/ctl"));
77
+ exports.ctl = ctl;
78
+ const ltl = __importStar(require("../profiles/ltl-sat"));
79
+ exports.ltl = ltl;
80
+ const muCalculus = __importStar(require("../profiles/mu-calculus"));
81
+ exports.muCalculus = muCalculus;
82
+ const hybrid = __importStar(require("../profiles/hybrid-logic"));
83
+ exports.hybrid = hybrid;
84
+ const descriptionLogic = __importStar(require("../profiles/description-logic"));
85
+ exports.descriptionLogic = descriptionLogic;
86
+ const modalAxioms = __importStar(require("../profiles/modal-frame-axioms"));
87
+ exports.modalAxioms = modalAxioms;
88
+ const sequentG3 = __importStar(require("../profiles/sequent-g3"));
89
+ exports.sequentG3 = sequentG3;
90
+ const sequentLK = __importStar(require("../profiles/sequent-lk"));
91
+ exports.sequentLK = sequentLK;
92
+ const intuitNJ = __importStar(require("../profiles/intuitionistic-nj"));
93
+ exports.intuitNJ = intuitNJ;
94
+ const defaultLogic = __importStar(require("../profiles/default-logic"));
95
+ exports.defaultLogic = defaultLogic;
96
+ const manyValued = __importStar(require("../profiles/many-valued"));
97
+ exports.manyValued = manyValued;
98
+ const substructural = __importStar(require("../profiles/substructural"));
99
+ exports.substructural = substructural;
100
+ const arithmetic = __importStar(require("../profiles/arithmetic"));
101
+ exports.arithmetic = arithmetic;
102
+ // SAT solving (algoritmos clásicos para evaluación de fórmulas)
103
+ var cdcl_1 = require("../profiles/classical/cdcl");
104
+ Object.defineProperty(exports, "cdcl", { enumerable: true, get: function () { return cdcl_1.cdcl; } });
105
+ Object.defineProperty(exports, "cdclAsync", { enumerable: true, get: function () { return cdcl_1.cdclAsync; } });
106
+ var dpll_1 = require("../profiles/classical/dpll");
107
+ Object.defineProperty(exports, "dpll", { enumerable: true, get: function () { return dpll_1.dpll; } });
108
+ Object.defineProperty(exports, "dpllAsync", { enumerable: true, get: function () { return dpll_1.dpllAsync; } });
109
+ var parallel_sat_1 = require("../profiles/classical/parallel-sat");
110
+ Object.defineProperty(exports, "workersAvailable", { enumerable: true, get: function () { return parallel_sat_1.workersAvailable; } });
111
+ Object.defineProperty(exports, "PARALLEL_THRESHOLD", { enumerable: true, get: function () { return parallel_sat_1.PARALLEL_THRESHOLD; } });
112
+ //# sourceMappingURL=logic.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"logic.js","sourceRoot":"","sources":["../../src/namespaces/logic.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,2CAA2C;AAC3C,mDAAgF;AAAzD,4GAAA,eAAe,OAAA;AAAE,qGAAA,QAAQ,OAAA;AAEhD,4CAA4C;AAC5C,qEAA8F;AAArF,uHAAA,sBAAsB,OAAA;AAAE,gHAAA,eAAe,OAAA;AAChD,iEAAwE;AAA/D,kHAAA,mBAAmB,OAAA;AAC5B,yCAA6C;AAApC,2FAAA,MAAM,OAAA;AACf,4DAAyE;AAAhE,8GAAA,oBAAoB,OAAA;AAC7B,0EAAuF;AAA9E,4HAAA,2BAA2B,OAAA;AACpC,gDAAuD;AAA9C,kGAAA,WAAW,OAAA;AACpB,+CAAuD;AAA9C,iGAAA,WAAW,OAAA;AACpB,yDAA+D;AAAtD,2GAAA,eAAe,OAAA;AACxB,oEAA+E;AAAtE,sHAAA,uBAAuB,OAAA;AAChC,yDAAqE;AAA5D,2GAAA,kBAAkB,OAAA;AAE3B,iDAAiD;AACjD,qDAAuC;AAerC,kBAAG;AAdL,yDAA2C;AAezC,kBAAG;AAdL,oEAAsD;AAepD,gCAAU;AAdZ,iEAAmD;AAejD,wBAAM;AAdR,gFAAkE;AAehE,4CAAgB;AAdlB,4EAA8D;AAe5D,kCAAW;AAdb,kEAAoD;AAelD,8BAAS;AAdX,kEAAoD;AAelD,8BAAS;AAdX,wEAA0D;AAexD,4BAAQ;AAdV,wEAA0D;AAexD,oCAAY;AAdd,oEAAsD;AAepD,gCAAU;AAdZ,yEAA2D;AAezD,sCAAa;AAdf,mEAAqD;AAenD,gCAAU;AAGZ,gEAAgE;AAChE,mDAA6D;AAApD,4FAAA,IAAI,OAAA;AAAE,iGAAA,SAAS,OAAA;AAExB,mDAA6D;AAApD,4FAAA,IAAI,OAAA;AAAE,iGAAA,SAAS,OAAA;AACxB,mEAA0F;AAAjF,gHAAA,gBAAgB,OAAA;AAAE,kHAAA,kBAAkB,OAAA"}
@@ -0,0 +1,18 @@
1
+ /**
2
+ * Namespace: ProofSystems
3
+ *
4
+ * Probadores formales y mecanismos de intercambio/manipulación de pruebas.
5
+ *
6
+ * Importa así:
7
+ * import { ProofSystems } from '@stevenvo780/st-lang';
8
+ * ProofSystems.folProver.proveFOL(theory);
9
+ * ProofSystems.proofExchange.signProof(pkg, key);
10
+ */
11
+ import * as folProver from '../fol-prover';
12
+ import * as folProverEquality from '../fol-prover-equality';
13
+ import * as proofExchange from '../proof-exchange';
14
+ import * as proofMinify from '../runtime/proof-minify';
15
+ import * as tableauFramework from '../tableau-framework';
16
+ import * as proofNets from '../proof-nets';
17
+ export { folProver, folProverEquality, proofExchange, proofMinify, tableauFramework, proofNets, };
18
+ //# sourceMappingURL=proof-systems.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"proof-systems.d.ts","sourceRoot":"","sources":["../../src/namespaces/proof-systems.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,KAAK,SAAS,MAAM,eAAe,CAAC;AAC3C,OAAO,KAAK,iBAAiB,MAAM,wBAAwB,CAAC;AAC5D,OAAO,KAAK,aAAa,MAAM,mBAAmB,CAAC;AACnD,OAAO,KAAK,WAAW,MAAM,yBAAyB,CAAC;AACvD,OAAO,KAAK,gBAAgB,MAAM,sBAAsB,CAAC;AACzD,OAAO,KAAK,SAAS,MAAM,eAAe,CAAC;AAE3C,OAAO,EACL,SAAS,EACT,iBAAiB,EACjB,aAAa,EACb,WAAW,EACX,gBAAgB,EAChB,SAAS,GACV,CAAC"}
@@ -0,0 +1,59 @@
1
+ "use strict";
2
+ /**
3
+ * Namespace: ProofSystems
4
+ *
5
+ * Probadores formales y mecanismos de intercambio/manipulación de pruebas.
6
+ *
7
+ * Importa así:
8
+ * import { ProofSystems } from '@stevenvo780/st-lang';
9
+ * ProofSystems.folProver.proveFOL(theory);
10
+ * ProofSystems.proofExchange.signProof(pkg, key);
11
+ */
12
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
13
+ if (k2 === undefined) k2 = k;
14
+ var desc = Object.getOwnPropertyDescriptor(m, k);
15
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
16
+ desc = { enumerable: true, get: function() { return m[k]; } };
17
+ }
18
+ Object.defineProperty(o, k2, desc);
19
+ }) : (function(o, m, k, k2) {
20
+ if (k2 === undefined) k2 = k;
21
+ o[k2] = m[k];
22
+ }));
23
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
24
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
25
+ }) : function(o, v) {
26
+ o["default"] = v;
27
+ });
28
+ var __importStar = (this && this.__importStar) || (function () {
29
+ var ownKeys = function(o) {
30
+ ownKeys = Object.getOwnPropertyNames || function (o) {
31
+ var ar = [];
32
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
33
+ return ar;
34
+ };
35
+ return ownKeys(o);
36
+ };
37
+ return function (mod) {
38
+ if (mod && mod.__esModule) return mod;
39
+ var result = {};
40
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
41
+ __setModuleDefault(result, mod);
42
+ return result;
43
+ };
44
+ })();
45
+ Object.defineProperty(exports, "__esModule", { value: true });
46
+ exports.proofNets = exports.tableauFramework = exports.proofMinify = exports.proofExchange = exports.folProverEquality = exports.folProver = void 0;
47
+ const folProver = __importStar(require("../fol-prover"));
48
+ exports.folProver = folProver;
49
+ const folProverEquality = __importStar(require("../fol-prover-equality"));
50
+ exports.folProverEquality = folProverEquality;
51
+ const proofExchange = __importStar(require("../proof-exchange"));
52
+ exports.proofExchange = proofExchange;
53
+ const proofMinify = __importStar(require("../runtime/proof-minify"));
54
+ exports.proofMinify = proofMinify;
55
+ const tableauFramework = __importStar(require("../tableau-framework"));
56
+ exports.tableauFramework = tableauFramework;
57
+ const proofNets = __importStar(require("../proof-nets"));
58
+ exports.proofNets = proofNets;
59
+ //# sourceMappingURL=proof-systems.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"proof-systems.js","sourceRoot":"","sources":["../../src/namespaces/proof-systems.ts"],"names":[],"mappings":";AAAA;;;;;;;;;GASG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,yDAA2C;AAQzC,8BAAS;AAPX,0EAA4D;AAQ1D,8CAAiB;AAPnB,iEAAmD;AAQjD,sCAAa;AAPf,qEAAuD;AAQrD,kCAAW;AAPb,uEAAyD;AAQvD,4CAAgB;AAPlB,yDAA2C;AAQzC,8BAAS"}
@@ -0,0 +1,26 @@
1
+ /**
2
+ * Namespace: Reasoning
3
+ *
4
+ * Razonamiento no-monótono, probabilístico, abductivo y herramientas
5
+ * de manipulación simbólica. Argumentación Dung, revisión de creencias AGM,
6
+ * abducción, lógica de Markov, redes Bayesianas, citation reasoning,
7
+ * análisis hyperreal, cache de teoremas, anti-unificación, term-rewriting.
8
+ *
9
+ * Importa así:
10
+ * import { Reasoning } from '@stevenvo780/st-lang';
11
+ * const ext = Reasoning.argumentation.computeExtensions(af, 'grounded');
12
+ * const cited = Reasoning.citationReasoning.deriveWithCitations(claims, ev);
13
+ */
14
+ import * as argumentation from '../argumentation';
15
+ import * as beliefRevision from '../belief-revision';
16
+ import * as abduction from '../runtime/abduction';
17
+ import * as markovLogic from '../runtime/markov-logic';
18
+ import * as bayesian from '../runtime/bayesian';
19
+ import * as citationReasoning from '../citation-reasoning';
20
+ import * as hyperreal from '../hyperreal';
21
+ import * as antiUnification from '../runtime/anti-unification';
22
+ import * as termRewriting from '../runtime/term-rewriting';
23
+ export { argumentation, beliefRevision, abduction, markovLogic, bayesian, citationReasoning, hyperreal, antiUnification, termRewriting, };
24
+ export { TheoremCache, tryReuseProof } from '../runtime/theorem-cache';
25
+ export type { CachedTheorem, CacheOptions as TheoremCacheOptions, CacheStats as TheoremCacheStats, ReuseResult as TheoremReuseResult, } from '../runtime/theorem-cache';
26
+ //# sourceMappingURL=reasoning.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"reasoning.d.ts","sourceRoot":"","sources":["../../src/namespaces/reasoning.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAEH,OAAO,KAAK,aAAa,MAAM,kBAAkB,CAAC;AAClD,OAAO,KAAK,cAAc,MAAM,oBAAoB,CAAC;AACrD,OAAO,KAAK,SAAS,MAAM,sBAAsB,CAAC;AAClD,OAAO,KAAK,WAAW,MAAM,yBAAyB,CAAC;AACvD,OAAO,KAAK,QAAQ,MAAM,qBAAqB,CAAC;AAChD,OAAO,KAAK,iBAAiB,MAAM,uBAAuB,CAAC;AAC3D,OAAO,KAAK,SAAS,MAAM,cAAc,CAAC;AAC1C,OAAO,KAAK,eAAe,MAAM,6BAA6B,CAAC;AAC/D,OAAO,KAAK,aAAa,MAAM,2BAA2B,CAAC;AAE3D,OAAO,EACL,aAAa,EACb,cAAc,EACd,SAAS,EACT,WAAW,EACX,QAAQ,EACR,iBAAiB,EACjB,SAAS,EACT,eAAe,EACf,aAAa,GACd,CAAC;AAGF,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AACvE,YAAY,EACV,aAAa,EACb,YAAY,IAAI,mBAAmB,EACnC,UAAU,IAAI,iBAAiB,EAC/B,WAAW,IAAI,kBAAkB,GAClC,MAAM,0BAA0B,CAAC"}
@@ -0,0 +1,72 @@
1
+ "use strict";
2
+ /**
3
+ * Namespace: Reasoning
4
+ *
5
+ * Razonamiento no-monótono, probabilístico, abductivo y herramientas
6
+ * de manipulación simbólica. Argumentación Dung, revisión de creencias AGM,
7
+ * abducción, lógica de Markov, redes Bayesianas, citation reasoning,
8
+ * análisis hyperreal, cache de teoremas, anti-unificación, term-rewriting.
9
+ *
10
+ * Importa así:
11
+ * import { Reasoning } from '@stevenvo780/st-lang';
12
+ * const ext = Reasoning.argumentation.computeExtensions(af, 'grounded');
13
+ * const cited = Reasoning.citationReasoning.deriveWithCitations(claims, ev);
14
+ */
15
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
16
+ if (k2 === undefined) k2 = k;
17
+ var desc = Object.getOwnPropertyDescriptor(m, k);
18
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
19
+ desc = { enumerable: true, get: function() { return m[k]; } };
20
+ }
21
+ Object.defineProperty(o, k2, desc);
22
+ }) : (function(o, m, k, k2) {
23
+ if (k2 === undefined) k2 = k;
24
+ o[k2] = m[k];
25
+ }));
26
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
27
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
28
+ }) : function(o, v) {
29
+ o["default"] = v;
30
+ });
31
+ var __importStar = (this && this.__importStar) || (function () {
32
+ var ownKeys = function(o) {
33
+ ownKeys = Object.getOwnPropertyNames || function (o) {
34
+ var ar = [];
35
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
36
+ return ar;
37
+ };
38
+ return ownKeys(o);
39
+ };
40
+ return function (mod) {
41
+ if (mod && mod.__esModule) return mod;
42
+ var result = {};
43
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
44
+ __setModuleDefault(result, mod);
45
+ return result;
46
+ };
47
+ })();
48
+ Object.defineProperty(exports, "__esModule", { value: true });
49
+ exports.tryReuseProof = exports.TheoremCache = exports.termRewriting = exports.antiUnification = exports.hyperreal = exports.citationReasoning = exports.bayesian = exports.markovLogic = exports.abduction = exports.beliefRevision = exports.argumentation = void 0;
50
+ const argumentation = __importStar(require("../argumentation"));
51
+ exports.argumentation = argumentation;
52
+ const beliefRevision = __importStar(require("../belief-revision"));
53
+ exports.beliefRevision = beliefRevision;
54
+ const abduction = __importStar(require("../runtime/abduction"));
55
+ exports.abduction = abduction;
56
+ const markovLogic = __importStar(require("../runtime/markov-logic"));
57
+ exports.markovLogic = markovLogic;
58
+ const bayesian = __importStar(require("../runtime/bayesian"));
59
+ exports.bayesian = bayesian;
60
+ const citationReasoning = __importStar(require("../citation-reasoning"));
61
+ exports.citationReasoning = citationReasoning;
62
+ const hyperreal = __importStar(require("../hyperreal"));
63
+ exports.hyperreal = hyperreal;
64
+ const antiUnification = __importStar(require("../runtime/anti-unification"));
65
+ exports.antiUnification = antiUnification;
66
+ const termRewriting = __importStar(require("../runtime/term-rewriting"));
67
+ exports.termRewriting = termRewriting;
68
+ // Theorem cache (proof reuse persistente) — re-export plano por uso frecuente.
69
+ var theorem_cache_1 = require("../runtime/theorem-cache");
70
+ Object.defineProperty(exports, "TheoremCache", { enumerable: true, get: function () { return theorem_cache_1.TheoremCache; } });
71
+ Object.defineProperty(exports, "tryReuseProof", { enumerable: true, get: function () { return theorem_cache_1.tryReuseProof; } });
72
+ //# sourceMappingURL=reasoning.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"reasoning.js","sourceRoot":"","sources":["../../src/namespaces/reasoning.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,gEAAkD;AAWhD,sCAAa;AAVf,mEAAqD;AAWnD,wCAAc;AAVhB,gEAAkD;AAWhD,8BAAS;AAVX,qEAAuD;AAWrD,kCAAW;AAVb,8DAAgD;AAW9C,4BAAQ;AAVV,yEAA2D;AAWzD,8CAAiB;AAVnB,wDAA0C;AAWxC,8BAAS;AAVX,6EAA+D;AAW7D,0CAAe;AAVjB,yEAA2D;AAWzD,sCAAa;AAGf,+EAA+E;AAC/E,0DAAuE;AAA9D,6GAAA,YAAY,OAAA;AAAE,8GAAA,aAAa,OAAA"}
@@ -0,0 +1,21 @@
1
+ /**
2
+ * Namespace: Semantics
3
+ *
4
+ * Capas semánticas y puentes de interpretación: text-layer (claims/passages
5
+ * con grafo de dependencias), MDX bridge, game semantics dialógico (IPC
6
+ * Lorenzen-Felscher), profile-bridge (traducciones entre lógicas), y
7
+ * coinducción (streams, bisimulación).
8
+ *
9
+ * Importa así:
10
+ * import { Semantics } from '@stevenvo780/st-lang';
11
+ * const state = Semantics.textLayer.createTextLayerState();
12
+ * const win = Semantics.gameSemantics.winningStrategy(formula);
13
+ */
14
+ import * as textLayerCompiler from '../text-layer/compiler';
15
+ import * as textLayerV2 from '../text-layer/v2';
16
+ import * as gameSemantics from '../game-semantics';
17
+ import * as profileBridge from '../profile-bridge';
18
+ import * as coinduction from '../coinduction';
19
+ export { textLayerCompiler, textLayerV2, gameSemantics, profileBridge, coinduction, };
20
+ export declare const textLayer: typeof textLayerCompiler;
21
+ //# sourceMappingURL=semantics.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"semantics.d.ts","sourceRoot":"","sources":["../../src/namespaces/semantics.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAGH,OAAO,KAAK,iBAAiB,MAAM,wBAAwB,CAAC;AAE5D,OAAO,KAAK,WAAW,MAAM,kBAAkB,CAAC;AAEhD,OAAO,KAAK,aAAa,MAAM,mBAAmB,CAAC;AACnD,OAAO,KAAK,aAAa,MAAM,mBAAmB,CAAC;AACnD,OAAO,KAAK,WAAW,MAAM,gBAAgB,CAAC;AAE9C,OAAO,EACL,iBAAiB,EACjB,WAAW,EACX,aAAa,EACb,aAAa,EACb,WAAW,GACZ,CAAC;AAGF,eAAO,MAAM,SAAS,0BAAoB,CAAC"}
@@ -0,0 +1,64 @@
1
+ "use strict";
2
+ /**
3
+ * Namespace: Semantics
4
+ *
5
+ * Capas semánticas y puentes de interpretación: text-layer (claims/passages
6
+ * con grafo de dependencias), MDX bridge, game semantics dialógico (IPC
7
+ * Lorenzen-Felscher), profile-bridge (traducciones entre lógicas), y
8
+ * coinducción (streams, bisimulación).
9
+ *
10
+ * Importa así:
11
+ * import { Semantics } from '@stevenvo780/st-lang';
12
+ * const state = Semantics.textLayer.createTextLayerState();
13
+ * const win = Semantics.gameSemantics.winningStrategy(formula);
14
+ */
15
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
16
+ if (k2 === undefined) k2 = k;
17
+ var desc = Object.getOwnPropertyDescriptor(m, k);
18
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
19
+ desc = { enumerable: true, get: function() { return m[k]; } };
20
+ }
21
+ Object.defineProperty(o, k2, desc);
22
+ }) : (function(o, m, k, k2) {
23
+ if (k2 === undefined) k2 = k;
24
+ o[k2] = m[k];
25
+ }));
26
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
27
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
28
+ }) : function(o, v) {
29
+ o["default"] = v;
30
+ });
31
+ var __importStar = (this && this.__importStar) || (function () {
32
+ var ownKeys = function(o) {
33
+ ownKeys = Object.getOwnPropertyNames || function (o) {
34
+ var ar = [];
35
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
36
+ return ar;
37
+ };
38
+ return ownKeys(o);
39
+ };
40
+ return function (mod) {
41
+ if (mod && mod.__esModule) return mod;
42
+ var result = {};
43
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
44
+ __setModuleDefault(result, mod);
45
+ return result;
46
+ };
47
+ })();
48
+ Object.defineProperty(exports, "__esModule", { value: true });
49
+ exports.textLayer = exports.coinduction = exports.profileBridge = exports.gameSemantics = exports.textLayerV2 = exports.textLayerCompiler = void 0;
50
+ // Text layer v1 — compilador legacy
51
+ const textLayerCompiler = __importStar(require("../text-layer/compiler"));
52
+ exports.textLayerCompiler = textLayerCompiler;
53
+ // Text layer v2 — grafo de claims con dependencias
54
+ const textLayerV2 = __importStar(require("../text-layer/v2"));
55
+ exports.textLayerV2 = textLayerV2;
56
+ const gameSemantics = __importStar(require("../game-semantics"));
57
+ exports.gameSemantics = gameSemantics;
58
+ const profileBridge = __importStar(require("../profile-bridge"));
59
+ exports.profileBridge = profileBridge;
60
+ const coinduction = __importStar(require("../coinduction"));
61
+ exports.coinduction = coinduction;
62
+ // Aliases convenientes — text-layer flat para coincidir con flat exports.
63
+ exports.textLayer = textLayerCompiler;
64
+ //# sourceMappingURL=semantics.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"semantics.js","sourceRoot":"","sources":["../../src/namespaces/semantics.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;GAYG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,oCAAoC;AACpC,0EAA4D;AAS1D,8CAAiB;AARnB,mDAAmD;AACnD,8DAAgD;AAQ9C,kCAAW;AANb,iEAAmD;AAOjD,sCAAa;AANf,iEAAmD;AAOjD,sCAAa;AANf,4DAA8C;AAO5C,kCAAW;AAGb,0EAA0E;AAC7D,QAAA,SAAS,GAAG,iBAAiB,CAAC"}
@@ -0,0 +1,22 @@
1
+ /**
2
+ * Namespace: Solvers
3
+ *
4
+ * Solvers de decisión combinatoria: SAT (CDCL v1/v2 + incremental),
5
+ * SMT bridge, CSP (AC-3 + backtracking + builtins), MUS (minimal
6
+ * unsat subsets), pool de evaluación paralela.
7
+ *
8
+ * Importa así:
9
+ * import { Solvers } from '@stevenvo780/st-lang';
10
+ * const r = Solvers.cdclV2.solveCDCLv2(cnf);
11
+ * const mus = Solvers.mus.extractMUS(clauses);
12
+ */
13
+ import * as cdclV2 from '../solver/cdcl-v2';
14
+ import * as cdclV2Incremental from '../solver/cdcl-v2-incremental';
15
+ import * as csp from '../runtime/csp';
16
+ import * as mus from '../runtime/mus';
17
+ import * as smt from '../runtime/smt';
18
+ import * as parallel from '../runtime/parallel';
19
+ export { cdclV2, cdclV2Incremental, csp, mus, smt, parallel };
20
+ export { solveCDCLv2 } from '../solver/cdcl-v2';
21
+ export { IncrementalCDCL } from '../solver/cdcl-v2-incremental';
22
+ //# sourceMappingURL=solvers.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"solvers.d.ts","sourceRoot":"","sources":["../../src/namespaces/solvers.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,KAAK,iBAAiB,MAAM,+BAA+B,CAAC;AACnE,OAAO,KAAK,GAAG,MAAM,gBAAgB,CAAC;AACtC,OAAO,KAAK,GAAG,MAAM,gBAAgB,CAAC;AACtC,OAAO,KAAK,GAAG,MAAM,gBAAgB,CAAC;AACtC,OAAO,KAAK,QAAQ,MAAM,qBAAqB,CAAC;AAEhD,OAAO,EAAE,MAAM,EAAE,iBAAiB,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,QAAQ,EAAE,CAAC;AAG9D,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAC"}
@@ -0,0 +1,66 @@
1
+ "use strict";
2
+ /**
3
+ * Namespace: Solvers
4
+ *
5
+ * Solvers de decisión combinatoria: SAT (CDCL v1/v2 + incremental),
6
+ * SMT bridge, CSP (AC-3 + backtracking + builtins), MUS (minimal
7
+ * unsat subsets), pool de evaluación paralela.
8
+ *
9
+ * Importa así:
10
+ * import { Solvers } from '@stevenvo780/st-lang';
11
+ * const r = Solvers.cdclV2.solveCDCLv2(cnf);
12
+ * const mus = Solvers.mus.extractMUS(clauses);
13
+ */
14
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
15
+ if (k2 === undefined) k2 = k;
16
+ var desc = Object.getOwnPropertyDescriptor(m, k);
17
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
18
+ desc = { enumerable: true, get: function() { return m[k]; } };
19
+ }
20
+ Object.defineProperty(o, k2, desc);
21
+ }) : (function(o, m, k, k2) {
22
+ if (k2 === undefined) k2 = k;
23
+ o[k2] = m[k];
24
+ }));
25
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
26
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
27
+ }) : function(o, v) {
28
+ o["default"] = v;
29
+ });
30
+ var __importStar = (this && this.__importStar) || (function () {
31
+ var ownKeys = function(o) {
32
+ ownKeys = Object.getOwnPropertyNames || function (o) {
33
+ var ar = [];
34
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
35
+ return ar;
36
+ };
37
+ return ownKeys(o);
38
+ };
39
+ return function (mod) {
40
+ if (mod && mod.__esModule) return mod;
41
+ var result = {};
42
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
43
+ __setModuleDefault(result, mod);
44
+ return result;
45
+ };
46
+ })();
47
+ Object.defineProperty(exports, "__esModule", { value: true });
48
+ exports.IncrementalCDCL = exports.solveCDCLv2 = exports.parallel = exports.smt = exports.mus = exports.csp = exports.cdclV2Incremental = exports.cdclV2 = void 0;
49
+ const cdclV2 = __importStar(require("../solver/cdcl-v2"));
50
+ exports.cdclV2 = cdclV2;
51
+ const cdclV2Incremental = __importStar(require("../solver/cdcl-v2-incremental"));
52
+ exports.cdclV2Incremental = cdclV2Incremental;
53
+ const csp = __importStar(require("../runtime/csp"));
54
+ exports.csp = csp;
55
+ const mus = __importStar(require("../runtime/mus"));
56
+ exports.mus = mus;
57
+ const smt = __importStar(require("../runtime/smt"));
58
+ exports.smt = smt;
59
+ const parallel = __importStar(require("../runtime/parallel"));
60
+ exports.parallel = parallel;
61
+ // Conveniencia: símbolos populares re-expuestos en raíz del namespace.
62
+ var cdcl_v2_1 = require("../solver/cdcl-v2");
63
+ Object.defineProperty(exports, "solveCDCLv2", { enumerable: true, get: function () { return cdcl_v2_1.solveCDCLv2; } });
64
+ var cdcl_v2_incremental_1 = require("../solver/cdcl-v2-incremental");
65
+ Object.defineProperty(exports, "IncrementalCDCL", { enumerable: true, get: function () { return cdcl_v2_incremental_1.IncrementalCDCL; } });
66
+ //# sourceMappingURL=solvers.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"solvers.js","sourceRoot":"","sources":["../../src/namespaces/solvers.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,0DAA4C;AAOnC,wBAAM;AANf,iFAAmE;AAMlD,8CAAiB;AALlC,oDAAsC;AAKF,kBAAG;AAJvC,oDAAsC;AAIG,kBAAG;AAH5C,oDAAsC;AAGQ,kBAAG;AAFjD,8DAAgD;AAEG,4BAAQ;AAE3D,uEAAuE;AACvE,6CAAgD;AAAvC,sGAAA,WAAW,OAAA;AACpB,qEAAgE;AAAvD,sHAAA,eAAe,OAAA"}
@@ -0,0 +1,22 @@
1
+ /**
2
+ * Namespace: TypeTheory
3
+ *
4
+ * Sistemas de tipos y cálculos lambda — correspondencia Curry-Howard,
5
+ * System F polimórfico, MLTT (Martin-Löf), λ-calc puro, combinadores SKI,
6
+ * NBE (normalization by evaluation), refinement types.
7
+ *
8
+ * Importa así:
9
+ * import { TypeTheory } from '@stevenvo780/st-lang';
10
+ * const t = TypeTheory.systemF.typeOf(term);
11
+ * const proof = TypeTheory.curryHoward.termToProof(lam);
12
+ */
13
+ import * as curryHoward from '../curry-howard';
14
+ import * as systemF from '../system-f';
15
+ import * as mltt from '../mltt';
16
+ import * as lambdaCalc from '../lambda-calc';
17
+ import * as combinatorsSKI from '../combinators-ski';
18
+ import * as nbe from '../nbe';
19
+ import * as refinementTypes from '../refinement-types';
20
+ import * as higherOrderUnify from '../higher-order-unify';
21
+ export { curryHoward, systemF, mltt, lambdaCalc, combinatorsSKI, nbe, refinementTypes, higherOrderUnify, };
22
+ //# sourceMappingURL=type-theory.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"type-theory.d.ts","sourceRoot":"","sources":["../../src/namespaces/type-theory.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,KAAK,WAAW,MAAM,iBAAiB,CAAC;AAC/C,OAAO,KAAK,OAAO,MAAM,aAAa,CAAC;AACvC,OAAO,KAAK,IAAI,MAAM,SAAS,CAAC;AAChC,OAAO,KAAK,UAAU,MAAM,gBAAgB,CAAC;AAC7C,OAAO,KAAK,cAAc,MAAM,oBAAoB,CAAC;AACrD,OAAO,KAAK,GAAG,MAAM,QAAQ,CAAC;AAC9B,OAAO,KAAK,eAAe,MAAM,qBAAqB,CAAC;AACvD,OAAO,KAAK,gBAAgB,MAAM,uBAAuB,CAAC;AAE1D,OAAO,EACL,WAAW,EACX,OAAO,EACP,IAAI,EACJ,UAAU,EACV,cAAc,EACd,GAAG,EACH,eAAe,EACf,gBAAgB,GACjB,CAAC"}
@@ -0,0 +1,65 @@
1
+ "use strict";
2
+ /**
3
+ * Namespace: TypeTheory
4
+ *
5
+ * Sistemas de tipos y cálculos lambda — correspondencia Curry-Howard,
6
+ * System F polimórfico, MLTT (Martin-Löf), λ-calc puro, combinadores SKI,
7
+ * NBE (normalization by evaluation), refinement types.
8
+ *
9
+ * Importa así:
10
+ * import { TypeTheory } from '@stevenvo780/st-lang';
11
+ * const t = TypeTheory.systemF.typeOf(term);
12
+ * const proof = TypeTheory.curryHoward.termToProof(lam);
13
+ */
14
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
15
+ if (k2 === undefined) k2 = k;
16
+ var desc = Object.getOwnPropertyDescriptor(m, k);
17
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
18
+ desc = { enumerable: true, get: function() { return m[k]; } };
19
+ }
20
+ Object.defineProperty(o, k2, desc);
21
+ }) : (function(o, m, k, k2) {
22
+ if (k2 === undefined) k2 = k;
23
+ o[k2] = m[k];
24
+ }));
25
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
26
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
27
+ }) : function(o, v) {
28
+ o["default"] = v;
29
+ });
30
+ var __importStar = (this && this.__importStar) || (function () {
31
+ var ownKeys = function(o) {
32
+ ownKeys = Object.getOwnPropertyNames || function (o) {
33
+ var ar = [];
34
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
35
+ return ar;
36
+ };
37
+ return ownKeys(o);
38
+ };
39
+ return function (mod) {
40
+ if (mod && mod.__esModule) return mod;
41
+ var result = {};
42
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
43
+ __setModuleDefault(result, mod);
44
+ return result;
45
+ };
46
+ })();
47
+ Object.defineProperty(exports, "__esModule", { value: true });
48
+ exports.higherOrderUnify = exports.refinementTypes = exports.nbe = exports.combinatorsSKI = exports.lambdaCalc = exports.mltt = exports.systemF = exports.curryHoward = void 0;
49
+ const curryHoward = __importStar(require("../curry-howard"));
50
+ exports.curryHoward = curryHoward;
51
+ const systemF = __importStar(require("../system-f"));
52
+ exports.systemF = systemF;
53
+ const mltt = __importStar(require("../mltt"));
54
+ exports.mltt = mltt;
55
+ const lambdaCalc = __importStar(require("../lambda-calc"));
56
+ exports.lambdaCalc = lambdaCalc;
57
+ const combinatorsSKI = __importStar(require("../combinators-ski"));
58
+ exports.combinatorsSKI = combinatorsSKI;
59
+ const nbe = __importStar(require("../nbe"));
60
+ exports.nbe = nbe;
61
+ const refinementTypes = __importStar(require("../refinement-types"));
62
+ exports.refinementTypes = refinementTypes;
63
+ const higherOrderUnify = __importStar(require("../higher-order-unify"));
64
+ exports.higherOrderUnify = higherOrderUnify;
65
+ //# sourceMappingURL=type-theory.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"type-theory.js","sourceRoot":"","sources":["../../src/namespaces/type-theory.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,6DAA+C;AAU7C,kCAAW;AATb,qDAAuC;AAUrC,0BAAO;AATT,8CAAgC;AAU9B,oBAAI;AATN,2DAA6C;AAU3C,gCAAU;AATZ,mEAAqD;AAUnD,wCAAc;AAThB,4CAA8B;AAU5B,kBAAG;AATL,qEAAuD;AAUrD,0CAAe;AATjB,wEAA0D;AAUxD,4CAAgB"}
@@ -0,0 +1,11 @@
1
+ import type { ILPOptions, ILPProblem, ILPSolution, LPProblem } from './types';
2
+ /**
3
+ * Genera el LP relajado: descarta integerVars/binaryVars pero
4
+ * mantiene `variableBounds` (los binarios ya tienen [0,1] ahí).
5
+ */
6
+ export declare function lpRelaxation(ilp: ILPProblem): LPProblem;
7
+ /**
8
+ * Solver ILP principal. Estrategia DFS con pila explícita.
9
+ */
10
+ export declare function solveILP(problem: ILPProblem, opts?: ILPOptions): ILPSolution;
11
+ //# sourceMappingURL=branch-and-bound.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"branch-and-bound.d.ts","sourceRoot":"","sources":["../../src/optimization/branch-and-bound.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,EAAE,UAAU,EAAE,UAAU,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAM9E;;;GAGG;AACH,wBAAgB,YAAY,CAAC,GAAG,EAAE,UAAU,GAAG,SAAS,CA+BvD;AAmGD;;GAEG;AACH,wBAAgB,QAAQ,CAAC,OAAO,EAAE,UAAU,EAAE,IAAI,GAAE,UAAe,GAAG,WAAW,CAgKhF"}