eyeling 1.32.0 → 1.33.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.
Files changed (630) hide show
  1. package/README.md +123 -18
  2. package/bin/eyeling.cjs +56 -4
  3. package/browser.d.ts +63 -0
  4. package/dist/browser/eyeling.browser.js +298 -14
  5. package/examples/eyelang/INTEGRATION.md +13 -0
  6. package/examples/eyelang/README.md +628 -0
  7. package/examples/eyelang/SPEC.md +684 -0
  8. package/examples/eyelang/access-control-policy.pl +52 -0
  9. package/examples/eyelang/ackermann.pl +46 -0
  10. package/examples/eyelang/age.pl +28 -0
  11. package/examples/eyelang/aliases-and-namespaces.pl +22 -0
  12. package/examples/eyelang/alignment-demo.pl +44 -0
  13. package/examples/eyelang/allen-interval-calculus.pl +64 -0
  14. package/examples/eyelang/ancestor.pl +21 -0
  15. package/examples/eyelang/animal.pl +21 -0
  16. package/examples/eyelang/annotation-rdf12.ttl +12 -0
  17. package/examples/eyelang/annotation.pl +34 -0
  18. package/examples/eyelang/auroracare.pl +309 -0
  19. package/examples/eyelang/backward.pl +12 -0
  20. package/examples/eyelang/basic-monadic.pl +10018 -0
  21. package/examples/eyelang/bayes-diagnosis.pl +108 -0
  22. package/examples/eyelang/bayes-therapy.pl +182 -0
  23. package/examples/eyelang/beam-deflection.pl +50 -0
  24. package/examples/eyelang/blocks-world-planning.pl +75 -0
  25. package/examples/eyelang/bmi.pl +232 -0
  26. package/examples/eyelang/braking-safety-worlds.pl +69 -0
  27. package/examples/eyelang/buck-converter-design.pl +78 -0
  28. package/examples/eyelang/cache-performance.pl +54 -0
  29. package/examples/eyelang/canary-release.pl +49 -0
  30. package/examples/eyelang/cat-koko.pl +24 -0
  31. package/examples/eyelang/clinical-trial-screening.pl +92 -0
  32. package/examples/eyelang/collatz-1000.pl +14 -0
  33. package/examples/eyelang/combinatorics-findall-sort.pl +37 -0
  34. package/examples/eyelang/competitive-enzyme-kinetics.pl +78 -0
  35. package/examples/eyelang/complex-matrix-stability.pl +45 -0
  36. package/examples/eyelang/complex.pl +121 -0
  37. package/examples/eyelang/composition-of-injective-functions-is-injective.pl +50 -0
  38. package/examples/eyelang/context-association.pl +53 -0
  39. package/examples/eyelang/control-system.pl +72 -0
  40. package/examples/eyelang/cryptarithmetic-send-more-money.pl +49 -0
  41. package/examples/eyelang/cyclic-path.pl +16 -0
  42. package/examples/eyelang/d3-group.pl +100 -0
  43. package/examples/eyelang/dairy-energy-balance.pl +65 -0
  44. package/examples/eyelang/data-negotiation.pl +39 -0
  45. package/examples/eyelang/deep-taxonomy-10.pl +115 -0
  46. package/examples/eyelang/deep-taxonomy-100.pl +385 -0
  47. package/examples/eyelang/deep-taxonomy-1000.pl +3085 -0
  48. package/examples/eyelang/deep-taxonomy-10000.pl +30094 -0
  49. package/examples/eyelang/deep-taxonomy-100000.pl +300184 -0
  50. package/examples/eyelang/delfour.pl +281 -0
  51. package/examples/eyelang/dense-hamiltonian-cycle.pl +92 -0
  52. package/examples/eyelang/deontic-logic.pl +52 -0
  53. package/examples/eyelang/derived-backward-rule.pl +30 -0
  54. package/examples/eyelang/derived-rule.pl +27 -0
  55. package/examples/eyelang/diamond-property.pl +38 -0
  56. package/examples/eyelang/dijkstra-findall-sort.pl +44 -0
  57. package/examples/eyelang/dijkstra-risk-path.pl +86 -0
  58. package/examples/eyelang/dijkstra.pl +46 -0
  59. package/examples/eyelang/dining-philosophers.pl +140 -0
  60. package/examples/eyelang/directional-language.ttl +9 -0
  61. package/examples/eyelang/dog.pl +25 -0
  62. package/examples/eyelang/drone-corridor-planner.pl +51 -0
  63. package/examples/eyelang/easter-computus.pl +89 -0
  64. package/examples/eyelang/electrical-rc-filter.pl +36 -0
  65. package/examples/eyelang/epidemic-policy.pl +67 -0
  66. package/examples/eyelang/equivalence-classes-overlap-implies-same-class.pl +27 -0
  67. package/examples/eyelang/eulerian-path.pl +85 -0
  68. package/examples/eyelang/ev-range-worlds.pl +82 -0
  69. package/examples/eyelang/exact-cover-sudoku.pl +113 -0
  70. package/examples/eyelang/existential-rule.pl +18 -0
  71. package/examples/eyelang/exoplanet-validation-worlds.pl +88 -0
  72. package/examples/eyelang/expression-eval.pl +43 -0
  73. package/examples/eyelang/eyeling-ackermann.n3 +41 -0
  74. package/examples/eyelang/eyeling-age-threshold.n3 +12 -0
  75. package/examples/eyelang/eyeling-alignment-demo.n3 +11 -0
  76. package/examples/eyelang/eyeling-allen-interval-calculus-small.n3 +13 -0
  77. package/examples/eyelang/eyeling-backward-recursion.n3 +11 -0
  78. package/examples/eyelang/eyeling-backward.n3 +10 -0
  79. package/examples/eyelang/eyeling-basic-monadic-small.n3 +11 -0
  80. package/examples/eyelang/eyeling-bmi.n3 +10 -0
  81. package/examples/eyelang/eyeling-cat-koko.n3 +15 -0
  82. package/examples/eyelang/eyeling-collatz-small.n3 +11 -0
  83. package/examples/eyelang/eyeling-collection.n3 +11 -0
  84. package/examples/eyelang/eyeling-complex-arithmetic.n3 +10 -0
  85. package/examples/eyelang/eyeling-context-association.n3 +11 -0
  86. package/examples/eyelang/eyeling-control-system-small.n3 +11 -0
  87. package/examples/eyelang/eyeling-crypto-builtins-extra.n3 +10 -0
  88. package/examples/eyelang/eyeling-crypto-builtins.n3 +8 -0
  89. package/examples/eyelang/eyeling-deep-taxonomy-10.n3 +18 -0
  90. package/examples/eyelang/eyeling-derived-backward-rule-flat.n3 +10 -0
  91. package/examples/eyelang/eyeling-derived-rule-flat.n3 +9 -0
  92. package/examples/eyelang/eyeling-digital-product-passport-small.n3 +11 -0
  93. package/examples/eyelang/eyeling-dijkstra-tiny.n3 +14 -0
  94. package/examples/eyelang/eyeling-dog-license.n3 +13 -0
  95. package/examples/eyelang/eyeling-drone-corridor-planner-small.n3 +13 -0
  96. package/examples/eyelang/eyeling-equals.n3 +8 -0
  97. package/examples/eyelang/eyeling-equivalence-classes.n3 +11 -0
  98. package/examples/eyelang/eyeling-euler-identity.n3 +9 -0
  99. package/examples/eyelang/eyeling-existential-rule.n3 +9 -0
  100. package/examples/eyelang/eyeling-expression-eval.n3 +11 -0
  101. package/examples/eyelang/eyeling-family-cousins-extended.n3 +12 -0
  102. package/examples/eyelang/eyeling-fastpow.n3 +10 -0
  103. package/examples/eyelang/eyeling-fibonacci.n3 +44 -0
  104. package/examples/eyelang/eyeling-french-cities-reachability.n3 +22 -0
  105. package/examples/eyelang/eyeling-goldbach-small.n3 +22 -0
  106. package/examples/eyelang/eyeling-good-cobbler.n3 +9 -0
  107. package/examples/eyelang/eyeling-list-builtins.n3 +10 -0
  108. package/examples/eyelang/eyeling-list-collection-extra.n3 +9 -0
  109. package/examples/eyelang/eyeling-math-builtins.n3 +9 -0
  110. package/examples/eyelang/eyeling-string-builtins-extra.n3 +9 -0
  111. package/examples/eyelang/eyeling-string-builtins.n3 +10 -0
  112. package/examples/eyelang/eyeling-time-builtins.n3 +11 -0
  113. package/examples/eyelang/eyeling-time-components-extra.n3 +10 -0
  114. package/examples/eyelang/eyeling-witch.n3 +10 -0
  115. package/examples/eyelang/family-cousins.n3 +17 -0
  116. package/examples/eyelang/family-cousins.pl +65 -0
  117. package/examples/eyelang/fastpow.pl +53 -0
  118. package/examples/eyelang/fft8-numeric.pl +83 -0
  119. package/examples/eyelang/fibonacci.pl +53 -0
  120. package/examples/eyelang/field-nitrogen-balance.pl +70 -0
  121. package/examples/eyelang/flandor.pl +296 -0
  122. package/examples/eyelang/floating-point.pl +23 -0
  123. package/examples/eyelang/four-color-map.pl +127 -0
  124. package/examples/eyelang/fundamental-theorem-arithmetic.pl +113 -0
  125. package/examples/eyelang/gcd-bezout-identity.pl +48 -0
  126. package/examples/eyelang/gd-step-certified.pl +158 -0
  127. package/examples/eyelang/gdpr-compliance.pl +69 -0
  128. package/examples/eyelang/goldbach-1000.pl +185 -0
  129. package/examples/eyelang/good-cobbler.pl +14 -0
  130. package/examples/eyelang/gps.pl +152 -0
  131. package/examples/eyelang/graph-reachability.pl +36 -0
  132. package/examples/eyelang/gray-code-counter.pl +48 -0
  133. package/examples/eyelang/greatest-lower-bound-uniqueness.pl +28 -0
  134. package/examples/eyelang/group-inverse-uniqueness.pl +34 -0
  135. package/examples/eyelang/hamiltonian-cycle.pl +55 -0
  136. package/examples/eyelang/hamiltonian-path.pl +49 -0
  137. package/examples/eyelang/hamming-code.pl +105 -0
  138. package/examples/eyelang/hanoi.pl +20 -0
  139. package/examples/eyelang/heat-loss.pl +51 -0
  140. package/examples/eyelang/heron-theorem.pl +36 -0
  141. package/examples/eyelang/ideal-gas-law.pl +37 -0
  142. package/examples/eyelang/illegitimate-reasoning.pl +88 -0
  143. package/examples/eyelang/kaprekar.pl +32 -0
  144. package/examples/eyelang/law-of-cosines.pl +31 -0
  145. package/examples/eyelang/least-squares-regression.pl +81 -0
  146. package/examples/eyelang/list-collection.pl +33 -0
  147. package/examples/eyelang/lldm.pl +78 -0
  148. package/examples/eyelang/manufacturing-quality-control.pl +73 -0
  149. package/examples/eyelang/matrix.pl +296 -0
  150. package/examples/eyelang/microgrid-dispatch.pl +85 -0
  151. package/examples/eyelang/monkey-bananas.pl +45 -0
  152. package/examples/eyelang/n-queens.pl +23 -0
  153. package/examples/eyelang/n3-builtins.n3 +28 -0
  154. package/examples/eyelang/network-sla.pl +48 -0
  155. package/examples/eyelang/newton-raphson.pl +49 -0
  156. package/examples/eyelang/nixon-diamond.pl +37 -0
  157. package/examples/eyelang/odrl-dpv-healthcare-risk-ranked.pl +266 -0
  158. package/examples/eyelang/odrl-dpv-risk-ranked.pl +320 -0
  159. package/examples/eyelang/orbital-transfer-design.pl +113 -0
  160. package/examples/eyelang/output/access-control-policy.pl +2 -0
  161. package/examples/eyelang/output/ackermann.pl +12 -0
  162. package/examples/eyelang/output/age.pl +2 -0
  163. package/examples/eyelang/output/aliases-and-namespaces.pl +5 -0
  164. package/examples/eyelang/output/alignment-demo.pl +32 -0
  165. package/examples/eyelang/output/allen-interval-calculus.pl +154 -0
  166. package/examples/eyelang/output/ancestor.pl +6 -0
  167. package/examples/eyelang/output/animal.pl +4 -0
  168. package/examples/eyelang/output/annotation-rdf12.ttl +1 -0
  169. package/examples/eyelang/output/annotation.pl +4 -0
  170. package/examples/eyelang/output/auroracare.pl +117 -0
  171. package/examples/eyelang/output/backward.pl +1 -0
  172. package/examples/eyelang/output/basic-monadic.pl +1518 -0
  173. package/examples/eyelang/output/bayes-diagnosis.pl +13 -0
  174. package/examples/eyelang/output/bayes-therapy.pl +23 -0
  175. package/examples/eyelang/output/beam-deflection.pl +5 -0
  176. package/examples/eyelang/output/blocks-world-planning.pl +4 -0
  177. package/examples/eyelang/output/bmi.pl +32 -0
  178. package/examples/eyelang/output/braking-safety-worlds.pl +18 -0
  179. package/examples/eyelang/output/buck-converter-design.pl +6 -0
  180. package/examples/eyelang/output/cache-performance.pl +4 -0
  181. package/examples/eyelang/output/canary-release.pl +5 -0
  182. package/examples/eyelang/output/cat-koko.pl +3 -0
  183. package/examples/eyelang/output/clinical-trial-screening.pl +9 -0
  184. package/examples/eyelang/output/collatz-1000.pl +1000 -0
  185. package/examples/eyelang/output/combinatorics-findall-sort.pl +2 -0
  186. package/examples/eyelang/output/competitive-enzyme-kinetics.pl +6 -0
  187. package/examples/eyelang/output/complex-matrix-stability.pl +5 -0
  188. package/examples/eyelang/output/complex.pl +1 -0
  189. package/examples/eyelang/output/composition-of-injective-functions-is-injective.pl +2 -0
  190. package/examples/eyelang/output/context-association.pl +3 -0
  191. package/examples/eyelang/output/control-system.pl +6 -0
  192. package/examples/eyelang/output/cryptarithmetic-send-more-money.pl +6 -0
  193. package/examples/eyelang/output/cyclic-path.pl +16 -0
  194. package/examples/eyelang/output/d3-group.pl +2 -0
  195. package/examples/eyelang/output/dairy-energy-balance.pl +13 -0
  196. package/examples/eyelang/output/data-negotiation.pl +1 -0
  197. package/examples/eyelang/output/deep-taxonomy-10.pl +16 -0
  198. package/examples/eyelang/output/deep-taxonomy-100.pl +16 -0
  199. package/examples/eyelang/output/deep-taxonomy-1000.pl +16 -0
  200. package/examples/eyelang/output/deep-taxonomy-10000.pl +16 -0
  201. package/examples/eyelang/output/deep-taxonomy-100000.pl +16 -0
  202. package/examples/eyelang/output/delfour.pl +31 -0
  203. package/examples/eyelang/output/dense-hamiltonian-cycle.pl +4 -0
  204. package/examples/eyelang/output/deontic-logic.pl +4 -0
  205. package/examples/eyelang/output/derived-backward-rule.pl +3 -0
  206. package/examples/eyelang/output/derived-rule.pl +2 -0
  207. package/examples/eyelang/output/diamond-property.pl +4 -0
  208. package/examples/eyelang/output/dijkstra-findall-sort.pl +2 -0
  209. package/examples/eyelang/output/dijkstra-risk-path.pl +29 -0
  210. package/examples/eyelang/output/dijkstra.pl +16 -0
  211. package/examples/eyelang/output/dining-philosophers.pl +350 -0
  212. package/examples/eyelang/output/directional-language.ttl +1 -0
  213. package/examples/eyelang/output/dog.pl +1 -0
  214. package/examples/eyelang/output/drone-corridor-planner.pl +17 -0
  215. package/examples/eyelang/output/easter-computus.pl +30 -0
  216. package/examples/eyelang/output/electrical-rc-filter.pl +3 -0
  217. package/examples/eyelang/output/epidemic-policy.pl +14 -0
  218. package/examples/eyelang/output/equivalence-classes-overlap-implies-same-class.pl +18 -0
  219. package/examples/eyelang/output/eulerian-path.pl +3 -0
  220. package/examples/eyelang/output/ev-range-worlds.pl +19 -0
  221. package/examples/eyelang/output/exact-cover-sudoku.pl +3 -0
  222. package/examples/eyelang/output/existential-rule.pl +2 -0
  223. package/examples/eyelang/output/exoplanet-validation-worlds.pl +22 -0
  224. package/examples/eyelang/output/expression-eval.pl +1 -0
  225. package/examples/eyelang/output/eyeling-ackermann.n3 +12 -0
  226. package/examples/eyelang/output/eyeling-age-threshold.n3 +4 -0
  227. package/examples/eyelang/output/eyeling-alignment-demo.n3 +1 -0
  228. package/examples/eyelang/output/eyeling-allen-interval-calculus-small.n3 +3 -0
  229. package/examples/eyelang/output/eyeling-backward-recursion.n3 +9 -0
  230. package/examples/eyelang/output/eyeling-backward.n3 +1 -0
  231. package/examples/eyelang/output/eyeling-basic-monadic-small.n3 +8 -0
  232. package/examples/eyelang/output/eyeling-bmi.n3 +2 -0
  233. package/examples/eyelang/output/eyeling-cat-koko.n3 +3 -0
  234. package/examples/eyelang/output/eyeling-collatz-small.n3 +3 -0
  235. package/examples/eyelang/output/eyeling-collection.n3 +1 -0
  236. package/examples/eyelang/output/eyeling-complex-arithmetic.n3 +5 -0
  237. package/examples/eyelang/output/eyeling-context-association.n3 +4 -0
  238. package/examples/eyelang/output/eyeling-control-system-small.n3 +4 -0
  239. package/examples/eyelang/output/eyeling-crypto-builtins-extra.n3 +3 -0
  240. package/examples/eyelang/output/eyeling-crypto-builtins.n3 +2 -0
  241. package/examples/eyelang/output/eyeling-deep-taxonomy-10.n3 +32 -0
  242. package/examples/eyelang/output/eyeling-derived-backward-rule-flat.n3 +4 -0
  243. package/examples/eyelang/output/eyeling-derived-rule-flat.n3 +2 -0
  244. package/examples/eyelang/output/eyeling-digital-product-passport-small.n3 +3 -0
  245. package/examples/eyelang/output/eyeling-dijkstra-tiny.n3 +9 -0
  246. package/examples/eyelang/output/eyeling-dog-license.n3 +1 -0
  247. package/examples/eyelang/output/eyeling-drone-corridor-planner-small.n3 +5 -0
  248. package/examples/eyelang/output/eyeling-equals.n3 +1 -0
  249. package/examples/eyelang/output/eyeling-equivalence-classes.n3 +2 -0
  250. package/examples/eyelang/output/eyeling-euler-identity.n3 +3 -0
  251. package/examples/eyelang/output/eyeling-existential-rule.n3 +4 -0
  252. package/examples/eyelang/output/eyeling-expression-eval.n3 +3 -0
  253. package/examples/eyelang/output/eyeling-family-cousins-extended.n3 +6 -0
  254. package/examples/eyelang/output/eyeling-fastpow.n3 +4 -0
  255. package/examples/eyelang/output/eyeling-fibonacci.n3 +6 -0
  256. package/examples/eyelang/output/eyeling-french-cities-reachability.n3 +25 -0
  257. package/examples/eyelang/output/eyeling-goldbach-small.n3 +2 -0
  258. package/examples/eyelang/output/eyeling-good-cobbler.n3 +2 -0
  259. package/examples/eyelang/output/eyeling-list-builtins.n3 +6 -0
  260. package/examples/eyelang/output/eyeling-list-collection-extra.n3 +5 -0
  261. package/examples/eyelang/output/eyeling-math-builtins.n3 +5 -0
  262. package/examples/eyelang/output/eyeling-string-builtins-extra.n3 +3 -0
  263. package/examples/eyelang/output/eyeling-string-builtins.n3 +4 -0
  264. package/examples/eyelang/output/eyeling-time-builtins.n3 +4 -0
  265. package/examples/eyelang/output/eyeling-time-components-extra.n3 +5 -0
  266. package/examples/eyelang/output/eyeling-witch.n3 +2 -0
  267. package/examples/eyelang/output/family-cousins.n3 +8 -0
  268. package/examples/eyelang/output/family-cousins.pl +28 -0
  269. package/examples/eyelang/output/fastpow.pl +6 -0
  270. package/examples/eyelang/output/fft8-numeric.pl +4 -0
  271. package/examples/eyelang/output/fibonacci.pl +6 -0
  272. package/examples/eyelang/output/field-nitrogen-balance.pl +21 -0
  273. package/examples/eyelang/output/flandor.pl +43 -0
  274. package/examples/eyelang/output/floating-point.pl +9 -0
  275. package/examples/eyelang/output/four-color-map.pl +3 -0
  276. package/examples/eyelang/output/fundamental-theorem-arithmetic.pl +9 -0
  277. package/examples/eyelang/output/gcd-bezout-identity.pl +36 -0
  278. package/examples/eyelang/output/gd-step-certified.pl +79 -0
  279. package/examples/eyelang/output/gdpr-compliance.pl +6 -0
  280. package/examples/eyelang/output/goldbach-1000.pl +667 -0
  281. package/examples/eyelang/output/good-cobbler.pl +1 -0
  282. package/examples/eyelang/output/gps.pl +21 -0
  283. package/examples/eyelang/output/graph-reachability.pl +3 -0
  284. package/examples/eyelang/output/gray-code-counter.pl +1 -0
  285. package/examples/eyelang/output/greatest-lower-bound-uniqueness.pl +2 -0
  286. package/examples/eyelang/output/group-inverse-uniqueness.pl +2 -0
  287. package/examples/eyelang/output/hamiltonian-cycle.pl +4 -0
  288. package/examples/eyelang/output/hamiltonian-path.pl +121 -0
  289. package/examples/eyelang/output/hamming-code.pl +6 -0
  290. package/examples/eyelang/output/hanoi.pl +1 -0
  291. package/examples/eyelang/output/heat-loss.pl +5 -0
  292. package/examples/eyelang/output/heron-theorem.pl +4 -0
  293. package/examples/eyelang/output/ideal-gas-law.pl +3 -0
  294. package/examples/eyelang/output/illegitimate-reasoning.pl +15 -0
  295. package/examples/eyelang/output/kaprekar.pl +8 -0
  296. package/examples/eyelang/output/law-of-cosines.pl +3 -0
  297. package/examples/eyelang/output/least-squares-regression.pl +5 -0
  298. package/examples/eyelang/output/list-collection.pl +3 -0
  299. package/examples/eyelang/output/lldm.pl +6 -0
  300. package/examples/eyelang/output/manufacturing-quality-control.pl +6 -0
  301. package/examples/eyelang/output/matrix.pl +10 -0
  302. package/examples/eyelang/output/microgrid-dispatch.pl +6 -0
  303. package/examples/eyelang/output/monkey-bananas.pl +5 -0
  304. package/examples/eyelang/output/n-queens.pl +93 -0
  305. package/examples/eyelang/output/n3-builtins.n3 +6 -0
  306. package/examples/eyelang/output/network-sla.pl +4 -0
  307. package/examples/eyelang/output/newton-raphson.pl +3 -0
  308. package/examples/eyelang/output/nixon-diamond.pl +5 -0
  309. package/examples/eyelang/output/odrl-dpv-healthcare-risk-ranked.pl +42 -0
  310. package/examples/eyelang/output/odrl-dpv-risk-ranked.pl +120 -0
  311. package/examples/eyelang/output/orbital-transfer-design.pl +7 -0
  312. package/examples/eyelang/output/path-discovery.pl +3 -0
  313. package/examples/eyelang/output/peano-arithmetic.pl +3 -0
  314. package/examples/eyelang/output/peasant.pl +10 -0
  315. package/examples/eyelang/output/pendulum-period.pl +4 -0
  316. package/examples/eyelang/output/polynomial.pl +14 -0
  317. package/examples/eyelang/output/project-portfolio-optimization.pl +6 -0
  318. package/examples/eyelang/output/proof-contrapositive.pl +3 -0
  319. package/examples/eyelang/output/quadratic-formula.pl +6 -0
  320. package/examples/eyelang/output/quine-mccluskey.pl +3 -0
  321. package/examples/eyelang/output/radioactive-decay.pl +5 -0
  322. package/examples/eyelang/output/resilient-city-orchestration.pl +67 -0
  323. package/examples/eyelang/output/riemann-hypothesis.pl +12 -0
  324. package/examples/eyelang/output/sat-dpll.pl +5 -0
  325. package/examples/eyelang/output/security-incident-correlation.pl +3 -0
  326. package/examples/eyelang/output/service-impact.pl +11 -0
  327. package/examples/eyelang/output/sieve.pl +1 -0
  328. package/examples/eyelang/output/skolem-functions.pl +16 -0
  329. package/examples/eyelang/output/socket-age.pl +1 -0
  330. package/examples/eyelang/output/socket-family.pl +3 -0
  331. package/examples/eyelang/output/socrates.n3 +1 -0
  332. package/examples/eyelang/output/socrates.pl +2 -0
  333. package/examples/eyelang/output/statistics-summary.pl +4 -0
  334. package/examples/eyelang/output/sudoku.pl +2 -0
  335. package/examples/eyelang/output/superdense-coding.pl +6 -0
  336. package/examples/eyelang/output/traveling-salesman.pl +1 -0
  337. package/examples/eyelang/output/triple-term.n3 +2 -0
  338. package/examples/eyelang/output/turing.pl +12 -0
  339. package/examples/eyelang/output/vector-similarity.pl +4 -0
  340. package/examples/eyelang/output/witch.pl +7 -0
  341. package/examples/eyelang/output/wolf-goat-cabbage.pl +3 -0
  342. package/examples/eyelang/output/zebra.pl +3 -0
  343. package/examples/eyelang/path-discovery.pl +44998 -0
  344. package/examples/eyelang/peano-arithmetic.pl +31 -0
  345. package/examples/eyelang/peasant.pl +30 -0
  346. package/examples/eyelang/pendulum-period.pl +50 -0
  347. package/examples/eyelang/polynomial.pl +124 -0
  348. package/examples/eyelang/project-portfolio-optimization.pl +101 -0
  349. package/examples/eyelang/proof/age.pl +71 -0
  350. package/examples/eyelang/proof/aliases-and-namespaces.pl +78 -0
  351. package/examples/eyelang/proof/ancestor.pl +140 -0
  352. package/examples/eyelang/proof/animal.pl +68 -0
  353. package/examples/eyelang/proof/annotation.pl +80 -0
  354. package/examples/eyelang/proof/backward.pl +22 -0
  355. package/examples/eyelang/proof/cat-koko.pl +86 -0
  356. package/examples/eyelang/proof/data-negotiation.pl +76 -0
  357. package/examples/eyelang/proof/derived-rule.pl +43 -0
  358. package/examples/eyelang/proof/dog.pl +31 -0
  359. package/examples/eyelang/proof/electrical-rc-filter.pl +105 -0
  360. package/examples/eyelang/proof/existential-rule.pl +40 -0
  361. package/examples/eyelang/proof/floating-point.pl +160 -0
  362. package/examples/eyelang/proof/good-cobbler.pl +16 -0
  363. package/examples/eyelang/proof/group-inverse-uniqueness.pl +84 -0
  364. package/examples/eyelang/proof/list-collection.pl +52 -0
  365. package/examples/eyelang/proof/proof-contrapositive.pl +78 -0
  366. package/examples/eyelang/proof/socket-age.pl +32 -0
  367. package/examples/eyelang/proof/socket-family.pl +59 -0
  368. package/examples/eyelang/proof/socrates.pl +38 -0
  369. package/examples/eyelang/proof-contrapositive.pl +27 -0
  370. package/examples/eyelang/quadratic-formula.pl +54 -0
  371. package/examples/eyelang/quine-mccluskey.pl +143 -0
  372. package/examples/eyelang/radioactive-decay.pl +56 -0
  373. package/examples/eyelang/resilient-city-orchestration.pl +303 -0
  374. package/examples/eyelang/riemann-hypothesis.pl +110 -0
  375. package/examples/eyelang/sat-dpll.pl +80 -0
  376. package/examples/eyelang/security-incident-correlation.pl +69 -0
  377. package/examples/eyelang/service-impact.pl +41 -0
  378. package/examples/eyelang/sieve.pl +20 -0
  379. package/examples/eyelang/skolem-functions.pl +52 -0
  380. package/examples/eyelang/socket-age.pl +39 -0
  381. package/examples/eyelang/socket-family.pl +28 -0
  382. package/examples/eyelang/socrates.n3 +11 -0
  383. package/examples/eyelang/socrates.pl +19 -0
  384. package/examples/eyelang/statistics-summary.pl +54 -0
  385. package/examples/eyelang/sudoku.pl +20 -0
  386. package/examples/eyelang/superdense-coding.pl +84 -0
  387. package/examples/eyelang/traveling-salesman.pl +64 -0
  388. package/examples/eyelang/triple-term.n3 +9 -0
  389. package/examples/eyelang/turing.pl +67 -0
  390. package/examples/eyelang/vector-similarity.pl +56 -0
  391. package/examples/eyelang/witch.pl +38 -0
  392. package/examples/eyelang/wolf-goat-cabbage.pl +56 -0
  393. package/examples/eyelang/zebra.pl +44 -0
  394. package/eyelang.d.ts +92 -0
  395. package/eyeling-builtins.ttl +3 -3
  396. package/eyeling.js +298 -14
  397. package/index.d.ts +290 -283
  398. package/index.js +95 -1
  399. package/lib/builtins.js +297 -14
  400. package/lib/cli.js +1 -0
  401. package/lib/eyelang/bin.js +7 -0
  402. package/lib/eyelang/builtins/aggregation.mjs +81 -0
  403. package/lib/eyelang/builtins/alphametic.mjs +144 -0
  404. package/lib/eyelang/builtins/arithmetic.mjs +197 -0
  405. package/lib/eyelang/builtins/control.mjs +22 -0
  406. package/lib/eyelang/builtins/core.mjs +78 -0
  407. package/lib/eyelang/builtins/formula.mjs +42 -0
  408. package/lib/eyelang/builtins/lists.mjs +149 -0
  409. package/lib/eyelang/builtins/matrix.mjs +226 -0
  410. package/lib/eyelang/builtins/n3.mjs +483 -0
  411. package/lib/eyelang/builtins/number-theory.mjs +114 -0
  412. package/lib/eyelang/builtins/portfolio.mjs +73 -0
  413. package/lib/eyelang/builtins/registry.mjs +54 -0
  414. package/lib/eyelang/builtins/search.mjs +579 -0
  415. package/lib/eyelang/builtins/strings.mjs +41 -0
  416. package/lib/eyelang/builtins/sudoku.mjs +141 -0
  417. package/lib/eyelang/cli.mjs +192 -0
  418. package/lib/eyelang/explain.mjs +324 -0
  419. package/lib/eyelang/hash.mjs +294 -0
  420. package/lib/eyelang/index.mjs +48 -0
  421. package/lib/eyelang/parser.mjs +428 -0
  422. package/lib/eyelang/program.mjs +244 -0
  423. package/lib/eyelang/rdf.mjs +747 -0
  424. package/lib/eyelang/solver.mjs +237 -0
  425. package/lib/eyelang/term.mjs +328 -0
  426. package/package.json +15 -5
  427. package/test/builtins.test.js +49 -1
  428. package/test/eyelang/conformance/README.md +45 -0
  429. package/test/eyelang/conformance/cases/core/001_fact_output.pl +4 -0
  430. package/test/eyelang/conformance/cases/core/001_fact_query.query +1 -0
  431. package/test/eyelang/conformance/cases/core/002_rule_recursion.pl +7 -0
  432. package/test/eyelang/conformance/cases/core/002_rule_recursion.query +1 -0
  433. package/test/eyelang/conformance/cases/core/003_terms_and_readback.pl +16 -0
  434. package/test/eyelang/conformance/cases/core/003_terms_and_readback.query +1 -0
  435. package/test/eyelang/conformance/cases/core/004_conjunction_and_parentheses.pl +5 -0
  436. package/test/eyelang/conformance/cases/core/004_conjunction_and_parentheses.query +1 -0
  437. package/test/eyelang/conformance/cases/core/005_list_deconstruction.pl +6 -0
  438. package/test/eyelang/conformance/cases/core/005_list_deconstruction.query +1 -0
  439. package/test/eyelang/conformance/cases/core/006_comma_formula_data.pl +4 -0
  440. package/test/eyelang/conformance/cases/core/006_comma_formula_data.query +1 -0
  441. package/test/eyelang/conformance/cases/core/007_anonymous_variables.pl +5 -0
  442. package/test/eyelang/conformance/cases/core/007_anonymous_variables.query +1 -0
  443. package/test/eyelang/conformance/cases/core/008_graphic_atoms.pl +6 -0
  444. package/test/eyelang/conformance/cases/core/008_graphic_atoms.query +1 -0
  445. package/test/eyelang/conformance/cases/core/009_comments_and_whitespace.pl +5 -0
  446. package/test/eyelang/conformance/cases/core/009_comments_and_whitespace.query +1 -0
  447. package/test/eyelang/conformance/cases/core/010_variable_scope_and_reuse.pl +8 -0
  448. package/test/eyelang/conformance/cases/core/010_variable_scope_and_reuse.query +1 -0
  449. package/test/eyelang/conformance/cases/core/011_predicate_arity.pl +6 -0
  450. package/test/eyelang/conformance/cases/core/011_predicate_arity.query +1 -0
  451. package/test/eyelang/conformance/cases/core/012_nested_compound_unification.pl +5 -0
  452. package/test/eyelang/conformance/cases/core/012_nested_compound_unification.query +1 -0
  453. package/test/eyelang/conformance/cases/core/013_multiple_clauses_order.pl +6 -0
  454. package/test/eyelang/conformance/cases/core/013_multiple_clauses_order.query +1 -0
  455. package/test/eyelang/conformance/cases/core/014_failure_filters_answers.pl +7 -0
  456. package/test/eyelang/conformance/cases/core/014_failure_filters_answers.query +1 -0
  457. package/test/eyelang/conformance/cases/core/015_improper_list_unification.pl +6 -0
  458. package/test/eyelang/conformance/cases/core/015_improper_list_unification.query +1 -0
  459. package/test/eyelang/conformance/cases/core/016_zero_arity_compound.pl +4 -0
  460. package/test/eyelang/conformance/cases/core/016_zero_arity_compound.query +1 -0
  461. package/test/eyelang/conformance/cases/core/017_three_step_recursion.pl +8 -0
  462. package/test/eyelang/conformance/cases/core/017_three_step_recursion.query +1 -0
  463. package/test/eyelang/conformance/cases/core/018_quoted_atom_readback.pl +6 -0
  464. package/test/eyelang/conformance/cases/core/018_quoted_atom_readback.query +1 -0
  465. package/test/eyelang/conformance/cases/core/019_parenthesized_three_conjuncts.pl +7 -0
  466. package/test/eyelang/conformance/cases/core/019_parenthesized_three_conjuncts.query +1 -0
  467. package/test/eyelang/conformance/cases/core/020_nested_list_terms.pl +5 -0
  468. package/test/eyelang/conformance/cases/core/020_nested_list_terms.query +1 -0
  469. package/test/eyelang/conformance/cases/core/021_repeated_variable_head.pl +7 -0
  470. package/test/eyelang/conformance/cases/core/022_rule_head_structure.pl +5 -0
  471. package/test/eyelang/conformance/cases/core/023_quoted_escapes_readback.pl +5 -0
  472. package/test/eyelang/conformance/cases/core/024_numeric_literal_readback.pl +6 -0
  473. package/test/eyelang/conformance/cases/core/025_body_parentheses_with_formula_data.pl +5 -0
  474. package/test/eyelang/conformance/cases/core/026_underscore_named_variable_reuse.pl +5 -0
  475. package/test/eyelang/conformance/cases/extension/001_default_derived_output.pl +5 -0
  476. package/test/eyelang/conformance/cases/extension/002_materialize_focus.pl +5 -0
  477. package/test/eyelang/conformance/cases/extension/003_arithmetic_and_comparison.pl +12 -0
  478. package/test/eyelang/conformance/cases/extension/003_arithmetic_and_comparison.query +1 -0
  479. package/test/eyelang/conformance/cases/extension/004_strings_and_atoms.pl +6 -0
  480. package/test/eyelang/conformance/cases/extension/004_strings_and_atoms.query +1 -0
  481. package/test/eyelang/conformance/cases/extension/005_lists_aggregation_ordering.pl +10 -0
  482. package/test/eyelang/conformance/cases/extension/005_lists_aggregation_ordering.query +1 -0
  483. package/test/eyelang/conformance/cases/extension/006_formula_terms.pl +5 -0
  484. package/test/eyelang/conformance/cases/extension/006_formula_terms.query +1 -0
  485. package/test/eyelang/conformance/cases/extension/007_negation_once_generators.pl +7 -0
  486. package/test/eyelang/conformance/cases/extension/007_negation_once_generators.query +1 -0
  487. package/test/eyelang/conformance/cases/extension/008_equality_and_inequality.pl +6 -0
  488. package/test/eyelang/conformance/cases/extension/008_equality_and_inequality.query +1 -0
  489. package/test/eyelang/conformance/cases/extension/009_list_relations.pl +6 -0
  490. package/test/eyelang/conformance/cases/extension/009_list_relations.query +1 -0
  491. package/test/eyelang/conformance/cases/extension/010_append_splits.pl +3 -0
  492. package/test/eyelang/conformance/cases/extension/010_append_splits.query +1 -0
  493. package/test/eyelang/conformance/cases/extension/011_matching_and_comparison.pl +7 -0
  494. package/test/eyelang/conformance/cases/extension/011_matching_and_comparison.query +1 -0
  495. package/test/eyelang/conformance/cases/extension/012_memoize_declaration.pl +8 -0
  496. package/test/eyelang/conformance/cases/extension/012_memoize_declaration.query +1 -0
  497. package/test/eyelang/conformance/cases/extension/013_numeric_functions.pl +9 -0
  498. package/test/eyelang/conformance/cases/extension/013_numeric_functions.query +1 -0
  499. package/test/eyelang/conformance/cases/extension/014_between_enumeration.pl +3 -0
  500. package/test/eyelang/conformance/cases/extension/014_between_enumeration.query +1 -0
  501. package/test/eyelang/conformance/cases/extension/015_smallest_divisor.pl +3 -0
  502. package/test/eyelang/conformance/cases/extension/015_smallest_divisor.query +1 -0
  503. package/test/eyelang/conformance/cases/extension/016_negation_filter.pl +7 -0
  504. package/test/eyelang/conformance/cases/extension/016_negation_filter.query +1 -0
  505. package/test/eyelang/conformance/cases/extension/017_once_user_predicate.pl +5 -0
  506. package/test/eyelang/conformance/cases/extension/017_once_user_predicate.query +1 -0
  507. package/test/eyelang/conformance/cases/extension/018_findall_user_goal.pl +6 -0
  508. package/test/eyelang/conformance/cases/extension/018_findall_user_goal.query +1 -0
  509. package/test/eyelang/conformance/cases/extension/019_sort_deduplicates_atoms.pl +3 -0
  510. package/test/eyelang/conformance/cases/extension/019_sort_deduplicates_atoms.query +1 -0
  511. package/test/eyelang/conformance/cases/extension/020_append_bound_prefix_suffix.pl +4 -0
  512. package/test/eyelang/conformance/cases/extension/020_append_bound_prefix_suffix.query +1 -0
  513. package/test/eyelang/conformance/cases/extension/021_nth0_index_generation.pl +3 -0
  514. package/test/eyelang/conformance/cases/extension/021_nth0_index_generation.query +1 -0
  515. package/test/eyelang/conformance/cases/extension/022_set_nth0_edges.pl +4 -0
  516. package/test/eyelang/conformance/cases/extension/022_set_nth0_edges.query +1 -0
  517. package/test/eyelang/conformance/cases/extension/023_select_duplicate_occurrences.pl +3 -0
  518. package/test/eyelang/conformance/cases/extension/023_select_duplicate_occurrences.query +1 -0
  519. package/test/eyelang/conformance/cases/extension/024_not_member_filter.pl +6 -0
  520. package/test/eyelang/conformance/cases/extension/024_not_member_filter.query +1 -0
  521. package/test/eyelang/conformance/cases/extension/025_is_list_filter.pl +5 -0
  522. package/test/eyelang/conformance/cases/extension/025_is_list_filter.query +1 -0
  523. package/test/eyelang/conformance/cases/extension/026_nested_formula_terms.pl +5 -0
  524. package/test/eyelang/conformance/cases/extension/026_nested_formula_terms.query +1 -0
  525. package/test/eyelang/conformance/cases/extension/027_materialize_excludes_source_fact.pl +6 -0
  526. package/test/eyelang/conformance/cases/extension/028_numeric_and_lexical_comparison.pl +5 -0
  527. package/test/eyelang/conformance/cases/extension/028_numeric_and_lexical_comparison.query +1 -0
  528. package/test/eyelang/conformance/cases/extension/029_string_matching_filters.pl +6 -0
  529. package/test/eyelang/conformance/cases/extension/029_string_matching_filters.query +1 -0
  530. package/test/eyelang/conformance/cases/extension/030_string_and_atom_concat.pl +4 -0
  531. package/test/eyelang/conformance/cases/extension/030_string_and_atom_concat.query +1 -0
  532. package/test/eyelang/conformance/cases/extension/031_countall_empty_and_nonempty.pl +4 -0
  533. package/test/eyelang/conformance/cases/extension/031_countall_empty_and_nonempty.query +1 -0
  534. package/test/eyelang/conformance/cases/extension/032_sumall_numeric_template.pl +5 -0
  535. package/test/eyelang/conformance/cases/extension/032_sumall_numeric_template.query +1 -0
  536. package/test/eyelang/conformance/cases/extension/033_aggregate_min_template.pl +5 -0
  537. package/test/eyelang/conformance/cases/extension/033_aggregate_min_template.query +1 -0
  538. package/test/eyelang/conformance/cases/extension/034_aggregate_max_compound_key.pl +5 -0
  539. package/test/eyelang/conformance/cases/extension/034_aggregate_max_compound_key.query +1 -0
  540. package/test/eyelang/conformance/cases/extension/035_date_difference.pl +4 -0
  541. package/test/eyelang/conformance/cases/extension/036_extended_gcd.pl +3 -0
  542. package/test/eyelang/conformance/cases/extension/037_collatz_trajectory.pl +3 -0
  543. package/test/eyelang/conformance/cases/extension/038_kaprekar_steps.pl +3 -0
  544. package/test/eyelang/conformance/cases/extension/039_goldbach_pair.pl +3 -0
  545. package/test/eyelang/conformance/cases/extension/040_matrix_operations.pl +5 -0
  546. package/test/eyelang/conformance/cases/extension/041_atom_range_generators.pl +5 -0
  547. package/test/eyelang/conformance/cases/extension/042_n_queens_small.pl +3 -0
  548. package/test/eyelang/conformance/cases/extension/043_cnf_model.pl +3 -0
  549. package/test/eyelang/conformance/cases/extension/044_cover9_filter.pl +6 -0
  550. package/test/eyelang/conformance/cases/extension/045_alphametic_sum_small.pl +3 -0
  551. package/test/eyelang/conformance/cases/extension/046_bounded_subset.pl +4 -0
  552. package/test/eyelang/conformance/expected/core/001_fact_output.out +1 -0
  553. package/test/eyelang/conformance/expected/core/002_rule_recursion.out +2 -0
  554. package/test/eyelang/conformance/expected/core/003_terms_and_readback.out +13 -0
  555. package/test/eyelang/conformance/expected/core/004_conjunction_and_parentheses.out +1 -0
  556. package/test/eyelang/conformance/expected/core/005_list_deconstruction.out +2 -0
  557. package/test/eyelang/conformance/expected/core/006_comma_formula_data.out +1 -0
  558. package/test/eyelang/conformance/expected/core/007_anonymous_variables.out +1 -0
  559. package/test/eyelang/conformance/expected/core/008_graphic_atoms.out +3 -0
  560. package/test/eyelang/conformance/expected/core/009_comments_and_whitespace.out +2 -0
  561. package/test/eyelang/conformance/expected/core/010_variable_scope_and_reuse.out +2 -0
  562. package/test/eyelang/conformance/expected/core/011_predicate_arity.out +2 -0
  563. package/test/eyelang/conformance/expected/core/012_nested_compound_unification.out +2 -0
  564. package/test/eyelang/conformance/expected/core/013_multiple_clauses_order.out +2 -0
  565. package/test/eyelang/conformance/expected/core/014_failure_filters_answers.out +1 -0
  566. package/test/eyelang/conformance/expected/core/015_improper_list_unification.out +3 -0
  567. package/test/eyelang/conformance/expected/core/016_zero_arity_compound.out +1 -0
  568. package/test/eyelang/conformance/expected/core/017_three_step_recursion.out +3 -0
  569. package/test/eyelang/conformance/expected/core/018_quoted_atom_readback.out +3 -0
  570. package/test/eyelang/conformance/expected/core/019_parenthesized_three_conjuncts.out +1 -0
  571. package/test/eyelang/conformance/expected/core/020_nested_list_terms.out +2 -0
  572. package/test/eyelang/conformance/expected/core/021_repeated_variable_head.out +2 -0
  573. package/test/eyelang/conformance/expected/core/022_rule_head_structure.out +2 -0
  574. package/test/eyelang/conformance/expected/core/023_quoted_escapes_readback.out +2 -0
  575. package/test/eyelang/conformance/expected/core/024_numeric_literal_readback.out +3 -0
  576. package/test/eyelang/conformance/expected/core/025_body_parentheses_with_formula_data.out +1 -0
  577. package/test/eyelang/conformance/expected/core/026_underscore_named_variable_reuse.out +1 -0
  578. package/test/eyelang/conformance/expected/extension/001_default_derived_output.out +3 -0
  579. package/test/eyelang/conformance/expected/extension/002_materialize_focus.out +1 -0
  580. package/test/eyelang/conformance/expected/extension/003_arithmetic_and_comparison.out +10 -0
  581. package/test/eyelang/conformance/expected/extension/004_strings_and_atoms.out +4 -0
  582. package/test/eyelang/conformance/expected/extension/005_lists_aggregation_ordering.out +9 -0
  583. package/test/eyelang/conformance/expected/extension/006_formula_terms.out +4 -0
  584. package/test/eyelang/conformance/expected/extension/007_negation_once_generators.out +2 -0
  585. package/test/eyelang/conformance/expected/extension/008_equality_and_inequality.out +4 -0
  586. package/test/eyelang/conformance/expected/extension/009_list_relations.out +5 -0
  587. package/test/eyelang/conformance/expected/extension/010_append_splits.out +3 -0
  588. package/test/eyelang/conformance/expected/extension/011_matching_and_comparison.out +5 -0
  589. package/test/eyelang/conformance/expected/extension/012_memoize_declaration.out +2 -0
  590. package/test/eyelang/conformance/expected/extension/013_numeric_functions.out +7 -0
  591. package/test/eyelang/conformance/expected/extension/014_between_enumeration.out +3 -0
  592. package/test/eyelang/conformance/expected/extension/015_smallest_divisor.out +1 -0
  593. package/test/eyelang/conformance/expected/extension/016_negation_filter.out +2 -0
  594. package/test/eyelang/conformance/expected/extension/017_once_user_predicate.out +1 -0
  595. package/test/eyelang/conformance/expected/extension/018_findall_user_goal.out +1 -0
  596. package/test/eyelang/conformance/expected/extension/019_sort_deduplicates_atoms.out +1 -0
  597. package/test/eyelang/conformance/expected/extension/020_append_bound_prefix_suffix.out +2 -0
  598. package/test/eyelang/conformance/expected/extension/021_nth0_index_generation.out +1 -0
  599. package/test/eyelang/conformance/expected/extension/022_set_nth0_edges.out +2 -0
  600. package/test/eyelang/conformance/expected/extension/023_select_duplicate_occurrences.out +2 -0
  601. package/test/eyelang/conformance/expected/extension/024_not_member_filter.out +1 -0
  602. package/test/eyelang/conformance/expected/extension/025_is_list_filter.out +1 -0
  603. package/test/eyelang/conformance/expected/extension/026_nested_formula_terms.out +6 -0
  604. package/test/eyelang/conformance/expected/extension/027_materialize_excludes_source_fact.out +1 -0
  605. package/test/eyelang/conformance/expected/extension/028_numeric_and_lexical_comparison.out +3 -0
  606. package/test/eyelang/conformance/expected/extension/029_string_matching_filters.out +2 -0
  607. package/test/eyelang/conformance/expected/extension/030_string_and_atom_concat.out +2 -0
  608. package/test/eyelang/conformance/expected/extension/031_countall_empty_and_nonempty.out +1 -0
  609. package/test/eyelang/conformance/expected/extension/032_sumall_numeric_template.out +1 -0
  610. package/test/eyelang/conformance/expected/extension/033_aggregate_min_template.out +1 -0
  611. package/test/eyelang/conformance/expected/extension/034_aggregate_max_compound_key.out +1 -0
  612. package/test/eyelang/conformance/expected/extension/035_date_difference.out +2 -0
  613. package/test/eyelang/conformance/expected/extension/036_extended_gcd.out +1 -0
  614. package/test/eyelang/conformance/expected/extension/037_collatz_trajectory.out +1 -0
  615. package/test/eyelang/conformance/expected/extension/038_kaprekar_steps.out +1 -0
  616. package/test/eyelang/conformance/expected/extension/039_goldbach_pair.out +2 -0
  617. package/test/eyelang/conformance/expected/extension/040_matrix_operations.out +3 -0
  618. package/test/eyelang/conformance/expected/extension/041_atom_range_generators.out +8 -0
  619. package/test/eyelang/conformance/expected/extension/042_n_queens_small.out +2 -0
  620. package/test/eyelang/conformance/expected/extension/043_cnf_model.out +1 -0
  621. package/test/eyelang/conformance/expected/extension/044_cover9_filter.out +2 -0
  622. package/test/eyelang/conformance/expected/extension/045_alphametic_sum_small.out +4 -0
  623. package/test/eyelang/conformance/expected/extension/046_bounded_subset.out +5 -0
  624. package/test/eyelang/run-all.mjs +20 -0
  625. package/test/eyelang/run-conformance.mjs +80 -0
  626. package/test/eyelang/run-examples.mjs +126 -0
  627. package/test/eyelang/run-regression.mjs +640 -0
  628. package/test/eyelang/test-style.mjs +91 -0
  629. package/test/eyelang.test.js +58 -0
  630. package/test/run.js +1 -0
@@ -0,0 +1,17 @@
1
+ gps_plan(d1, plan([fly_gent_brugge, public_coastline_brugge_oostende], 2800.0, 0.012, 0.96029999999999993, 0.95039999999999991, low, none, [t, t, t, t, t])).
2
+ gps_plan(d1, plan([fly_gent_brugge, buy_permit_brugge, public_coastline_brugge_oostende], 3250.0, 0.014, 0.94109399999999999, 0.95039999999999991, low, yes, [t, t, t, t])).
3
+ gps_plan(d1, plan([fly_gent_brugge, buy_permit_brugge, topup_brugge, cross_corridor_brugge_oostende], 3250.0, 0.015000000000000001, 0.94984520399999994, 0.97019999999999995, mid, yes, [t, t, t])).
4
+ gps_plan(d1, plan([fly_gent_brugge, buy_permit_brugge, topup_brugge, public_coastline_brugge_oostende], 3550.0, 0.017000000000000001, 0.94499905500000003, 0.931392, mid, yes, [t, t, t])).
5
+ gps_plan(d1, plan([fly_gent_brugge, topup_brugge, public_coastline_brugge_oostende], 3100.0, 0.015000000000000001, 0.96428475000000002, 0.931392, mid, none, [t, t, t, t])).
6
+ gps_plan(d1, plan([fly_gent_brugge, topup_brugge, buy_permit_brugge, cross_corridor_brugge_oostende], 3250.0, 0.015000000000000001, 0.94984520399999994, 0.97019999999999995, mid, yes, [t, t, t])).
7
+ gps_plan(d1, plan([fly_gent_brugge, topup_brugge, buy_permit_brugge, public_coastline_brugge_oostende], 3550.0, 0.017000000000000001, 0.94499905500000003, 0.931392, mid, yes, [t, t, t])).
8
+ gps_plan(d1, plan([train_gent_brugge, public_coastline_brugge_oostende], 2900.0, 0.018000000000000002, 0.97402500000000003, 0.95519999999999994, mid, none, [t, t, t, t, t])).
9
+ gps_plan(d1, plan([train_gent_brugge, buy_permit_brugge, cross_corridor_brugge_oostende], 3050.0, 0.018000000000000002, 0.95943959999999995, 0.995, mid, yes, [t, t, t, t])).
10
+ gps_plan(d1, plan([train_gent_brugge, buy_permit_brugge, public_coastline_brugge_oostende], 3350.0, 0.02, 0.95454450000000002, 0.95519999999999994, mid, yes, [t, t, t, t])).
11
+ gps_plan(d1, plan([fly_gent_kortrijk, fly_kortrijk_brugge, buy_permit_brugge, quick_charge_brugge, cross_corridor_brugge_oostende], 5150.0, 0.024, 0.94034675195999995, 0.9506969999999999, mid, yes, [t, t])).
12
+ gps_plan(d1, plan([fly_gent_kortrijk, fly_kortrijk_brugge, quick_charge_brugge, public_coastline_brugge_oostende], 5000.0, 0.024, 0.95464190250000003, 0.91266911999999989, mid, none, [t, t, t])).
13
+ gps_plan(d1, plan([fly_gent_kortrijk, fly_kortrijk_brugge, quick_charge_brugge, buy_permit_brugge, cross_corridor_brugge_oostende], 5150.0, 0.024, 0.94034675195999995, 0.9506969999999999, mid, yes, [t, t])).
14
+ gps_plan(d1, plan([fly_gent_kortrijk, get_zone_permit_kortrijk, fly_kortrijk_brugge, quick_charge_brugge, cross_corridor_brugge_oostende], 5000.0, 0.023, 0.95857796449800003, 0.9506969999999999, mid, yes, [t, t])).
15
+ gps_plan(d1, plan([fly_gent_kortrijk, get_zone_permit_kortrijk, fly_kortrijk_brugge, quick_charge_brugge, public_coastline_brugge_oostende], 5300.0, 0.025000000000000001, 0.95368726059749998, 0.91266911999999989, mid, yes, [t, t])).
16
+ gps_plan(d1, plan([fly_gent_kortrijk, get_zone_permit_kortrijk, emergency_charge_kortrijk, direct_corridor_kortrijk_oostende], 3500.0, 0.02, 0.94356004544999994, 0.86526000000000003, mid, yes, [t, t, t])).
17
+ gps_plan(d1, plan([fly_gent_kortrijk, emergency_charge_kortrijk, get_zone_permit_kortrijk, direct_corridor_kortrijk_oostende], 3500.0, 0.019999999999999997, 0.94356004544999994, 0.86526000000000003, mid, yes, [t, t, t])).
@@ -0,0 +1,30 @@
1
+ easterDate(y2026, date(2026, april, 5)).
2
+ easterDate(y2027, date(2027, march, 28)).
3
+ easterDate(y2028, date(2028, april, 16)).
4
+ easterDate(y2029, date(2029, april, 1)).
5
+ easterDate(y2030, date(2030, april, 21)).
6
+ easterDate(y2031, date(2031, april, 13)).
7
+ easterDate(y2032, date(2032, march, 28)).
8
+ easterDate(y2033, date(2033, april, 17)).
9
+ easterDate(y2034, date(2034, april, 9)).
10
+ easterDate(y2035, date(2035, march, 25)).
11
+ computusRemainders(y2026, remainders(12, 12, 2)).
12
+ computusRemainders(y2027, remainders(13, 1, 5)).
13
+ computusRemainders(y2028, remainders(14, 20, 5)).
14
+ computusRemainders(y2029, remainders(15, 9, 1)).
15
+ computusRemainders(y2030, remainders(16, 28, 2)).
16
+ computusRemainders(y2031, remainders(17, 17, 5)).
17
+ computusRemainders(y2032, remainders(18, 6, 0)).
18
+ computusRemainders(y2033, remainders(0, 24, 2)).
19
+ computusRemainders(y2034, remainders(1, 13, 5)).
20
+ computusRemainders(y2035, remainders(2, 2, 1)).
21
+ legalGregorianWindow(y2026, true).
22
+ legalGregorianWindow(y2027, true).
23
+ legalGregorianWindow(y2028, true).
24
+ legalGregorianWindow(y2029, true).
25
+ legalGregorianWindow(y2030, true).
26
+ legalGregorianWindow(y2031, true).
27
+ legalGregorianWindow(y2032, true).
28
+ legalGregorianWindow(y2033, true).
29
+ legalGregorianWindow(y2034, true).
30
+ legalGregorianWindow(y2035, true).
@@ -0,0 +1,3 @@
1
+ type(filter1, first_order_low_pass).
2
+ timeConstant_s(filter1, 0.01).
3
+ cutoffFrequency_Hz(filter1, 15.915494309189533).
@@ -0,0 +1,14 @@
1
+ status(no_mandate, insufficient_control).
2
+ status(vaccination_campaign, insufficient_control).
3
+ status(indoor_masks, insufficient_control).
4
+ status(vaccination_and_masks, acceptable_control).
5
+ riskScore(no_mandate, 1.3999999999999999).
6
+ riskScore(vaccination_campaign, 0.77000000000000002).
7
+ riskScore(indoor_masks, 0.90999999999999992).
8
+ riskScore(vaccination_and_masks, 0.50050000000000006).
9
+ cost(no_mandate, 0).
10
+ cost(vaccination_campaign, 3).
11
+ cost(indoor_masks, 2).
12
+ cost(vaccination_and_masks, 5).
13
+ recommendedPolicy(epidemic_policy, vaccination_and_masks).
14
+ reason(epidemic_policy, "combined vaccination and indoor masks are the only policy below the outbreak threshold").
@@ -0,0 +1,18 @@
1
+ sameClassBecauseOfSharedMember(a, b, a).
2
+ sameClassBecauseOfSharedMember(a, c, a).
3
+ sameClassBecauseOfSharedMember(b, a, a).
4
+ sameClassBecauseOfSharedMember(b, c, a).
5
+ sameClassBecauseOfSharedMember(c, a, a).
6
+ sameClassBecauseOfSharedMember(c, b, a).
7
+ sameClassBecauseOfSharedMember(a, b, b).
8
+ sameClassBecauseOfSharedMember(a, c, b).
9
+ sameClassBecauseOfSharedMember(b, a, b).
10
+ sameClassBecauseOfSharedMember(b, c, b).
11
+ sameClassBecauseOfSharedMember(c, a, b).
12
+ sameClassBecauseOfSharedMember(c, b, b).
13
+ sameClassBecauseOfSharedMember(a, b, c).
14
+ sameClassBecauseOfSharedMember(a, c, c).
15
+ sameClassBecauseOfSharedMember(b, a, c).
16
+ sameClassBecauseOfSharedMember(b, c, c).
17
+ sameClassBecauseOfSharedMember(c, a, c).
18
+ sameClassBecauseOfSharedMember(c, b, c).
@@ -0,0 +1,3 @@
1
+ oddVertices(eulerian_path_case, []).
2
+ path(eulerian_path_case, [v1, v2, v3, v4, v5, v1, v3, v6, v2, v4, v6, v1]).
3
+ edgeCount(eulerian_path_case, 11).
@@ -0,0 +1,19 @@
1
+ safeInWorld(city_errand, w1).
2
+ safeInWorld(city_errand, w2).
3
+ safeInWorld(city_errand, w0).
4
+ safeInWorld(city_errand, w3).
5
+ safeInWorld(winter_highway, w1).
6
+ safeInWorld(heavy_delivery, w1).
7
+ safeInWorld(heavy_delivery, w2).
8
+ safeInWorld(heavy_delivery, w0).
9
+ safeInWorld(cold_commute, w1).
10
+ safeInWorld(cold_commute, w2).
11
+ safeInWorld(cold_commute, w0).
12
+ safeInWorld(cold_commute, w3).
13
+ riskyInWorld(winter_highway, w2).
14
+ riskyInWorld(winter_highway, w0).
15
+ riskyInWorld(winter_highway, w3).
16
+ riskyInWorld(heavy_delivery, w3).
17
+ reason(winter_highway, "cold fast payload trip exceeds battery in physics-aware worlds").
18
+ reason(heavy_delivery, "safety buffer turns a physics-safe delivery into a cautious risk").
19
+ status(ev_range_worlds, expected_world_pattern).
@@ -0,0 +1,3 @@
1
+ status(exact_cover_sudoku, solved).
2
+ solution(exact_cover_sudoku, [[5, 3, 4, 6, 7, 8, 9, 1, 2], [6, 7, 2, 1, 9, 5, 3, 4, 8], [1, 9, 8, 3, 4, 2, 5, 6, 7], [8, 5, 9, 7, 6, 1, 4, 2, 3], [4, 2, 6, 8, 5, 3, 7, 9, 1], [7, 1, 3, 9, 2, 4, 8, 5, 6], [9, 6, 1, 5, 3, 7, 2, 8, 4], [2, 8, 7, 4, 1, 9, 6, 3, 5], [3, 4, 5, 2, 8, 6, 1, 7, 9]]).
3
+ firstRow(exact_cover_sudoku, [5, 3, 4, 6, 7, 8, 9, 1, 2]).
@@ -0,0 +1,2 @@
1
+ is(socrates, sk_0).
2
+ is(plato, sk_1).
@@ -0,0 +1,22 @@
1
+ ppvPlanetGivenDetection(rare_wide_orbit, 0.090163934426229442).
2
+ ppvPlanetGivenDetection(mstar_short_period, 0.96116504854368934).
3
+ ppvPlanetGivenDetection(common_hot_neptune_good, 0.91346153846153844).
4
+ ppvPlanetGivenDetection(common_hot_neptune_low_spec, 0.76000000000000001).
5
+ confirmsInWorld(mstar_short_period, w0).
6
+ confirmsInWorld(common_hot_neptune_good, w0).
7
+ confirmsInWorld(rare_wide_orbit, w1).
8
+ confirmsInWorld(mstar_short_period, w1).
9
+ confirmsInWorld(common_hot_neptune_good, w1).
10
+ confirmsInWorld(common_hot_neptune_low_spec, w1).
11
+ confirmsInWorld(mstar_short_period, w2).
12
+ confirmsInWorld(common_hot_neptune_good, w2).
13
+ confirmsInWorld(mstar_short_period, w3).
14
+ rejectsInWorld(rare_wide_orbit, w0).
15
+ rejectsInWorld(common_hot_neptune_low_spec, w0).
16
+ rejectsInWorld(rare_wide_orbit, w2).
17
+ rejectsInWorld(common_hot_neptune_low_spec, w2).
18
+ rejectsInWorld(rare_wide_orbit, w3).
19
+ rejectsInWorld(common_hot_neptune_good, w3).
20
+ rejectsInWorld(common_hot_neptune_low_spec, w3).
21
+ status(exoplanet_validation_worlds, expected_world_pattern).
22
+ reason(exoplanet_validation_worlds, "Bayesian worlds account for occurrence and false positives while the naive world trusts sensitivity alone").
@@ -0,0 +1 @@
1
+ result(root, 12).
@@ -0,0 +1,12 @@
1
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/ackermann#ackermann_0_0"), iri("https://eyereasoner.github.io/eyeling/examples/ackermann#value"), literal("1", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
2
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/ackermann#ackermann_0_6"), iri("https://eyereasoner.github.io/eyeling/examples/ackermann#value"), literal("7", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
3
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/ackermann#ackermann_1_2"), iri("https://eyereasoner.github.io/eyeling/examples/ackermann#value"), literal("4", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
4
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/ackermann#ackermann_1_7"), iri("https://eyereasoner.github.io/eyeling/examples/ackermann#value"), literal("9", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
5
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/ackermann#ackermann_2_2"), iri("https://eyereasoner.github.io/eyeling/examples/ackermann#value"), literal("7", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
6
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/ackermann#ackermann_2_9"), iri("https://eyereasoner.github.io/eyeling/examples/ackermann#value"), literal("21", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
7
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/ackermann#ackermann_3_4"), iri("https://eyereasoner.github.io/eyeling/examples/ackermann#value"), literal("125", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
8
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/ackermann#ackermann_3_1000"), iri("https://eyereasoner.github.io/eyeling/examples/ackermann#value"), literal("85720688574901385675874003924800144844912384936442688595500031069628084089994889799455870305255668650207573833404251746014971622855385123487876620597588598431476542198593847883368596840498969135023633457224371799868655530139190140473324351568616503316569571821492337341283438653220995094697645344555005", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
9
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/ackermann#ackermann_4_0"), iri("https://eyereasoner.github.io/eyeling/examples/ackermann#value"), literal("13", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
10
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/ackermann#ackermann_4_1"), iri("https://eyereasoner.github.io/eyeling/examples/ackermann#value"), literal("65533", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
11
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/ackermann#ackermann_4_2"), iri("https://eyereasoner.github.io/eyeling/examples/ackermann#value"), literal("2003529930406846464979072351560255750447825475569751419265016973710894059556311453089506130880933348101038234342907263181822949382118812668869506364761547029165041871916351587966347219442930927982084309104855990570159318959639524863372367203002916969592156108764948889254090805911457037675208500206671563702366126359747144807111774815880914135742720967190151836282560618091458852699826141425030123391108273603843767876449043205960379124490905707560314035076162562476031863793126484703743782954975613770981604614413308692118102485959152380195331030292162800160568670105651646750568038741529463842244845292537361442533614373729088303794601274724958414864915930647252015155693922628180691650796381064132275307267143998158508811292628901134237782705567421080070065283963322155077831214288551675554073345107213112427399562982719769150054883905223804357045848197956393157853510018992000024141963706813559840464039472194016069517690156119726982337890017641517190051133466306898140219383481435426387306539552969691388024158161859561100640362119796101859534802787167200122604642492385111393400464351623867567078745259464670903886547743483217897012764455529409092021959585751622973333576159552394885297579954028471943529913543763705986928913757153740001986394332464890052543106629669165243419174691389632476560289415199775477703138064781342309596190960654591300890188887588084733625956065444888501447335706058817090162108499714529568344061979690565469813631162053579369791403236328496233046421066136200220175787851857409162050489711781820400187282939943446186224328009837323764931814789848119452713007440220765680910376203999203492023906626264491909167985461515778839060397720759279378852241294301017458086862263369284725851403039615558564330385450688652213114813638408384778263790459607186876728509763471271988890680478243230394718650525660978150729861141430305816927924971409161059417185352275887504477592218301158780701975535722241400019548102005661773589781499532325208589753463547007786690406429016763808161740550405117670093673202804549339027992491867306539931640720492238474815280619166900933805732120816350707634351669869625020969023162859350071874190579161241536897514808261904847946571736601005892476655445840838334790544144817684255327207315586349347605137419779525190365032198020108764738368682531025183377533908861426184800374008082238104076468878471647552945326947661700424461063311238021134588694532200116564076327023074292426051582811070387018345324567635625951430032037432740780879056283663406965030844225855967039271869461158513793386475699748568670079823960604393478850861649260304945061743412365828352144806726676841807083754862211408236579802961200027441324438432402331257403545019352428776430880232850855886089962774458164680857875115807014743763867976955049991643998284357290415378143438847303484261903388841494031366139854257635577105335580206622185577060082551288893332226436281984838613239570676191409638533832374343758830859233722284644287996245605476932428998432652677378373173288063210753211238680604674708428051166488709084770291208161104912555598322366244868556651402684641209694982590565519216188104341226838996283071654868525536914850299539675503954938371853405900096187489473992880432496373165753803673586710175783994818471798498246948060532081996066183434012476096639519778021441199752546704080608499344178256285092726523709898651539462193004607364507926212975917698293892367015170992091531567814439791248475706237804600009918293321306880570046591458387208088016887445835557926258465124763087148566313528934166117490617526671492672176128330845273936469244582892571388877839056300482483799839692029222215486145902373478222682521639957440801727144146179559226175083889020074169926238300282286249284182671243405751424188569994272331606998712986882771820617214453142574944015066139463169197629181506579745526236191224848063890033669074365989226349564114665503062965960199720636202603521917776740668777463549375318899587866282125469797102065747232721372918144666659421872003474508942830911535189271114287108376159222380276605327823351661555149369375778466670145717971901227117812780450240026384758788339396817962950690798817121690686929538248529830023476068454114178139110648560236549754227497231007615131870024053910510913817843721791422528587432098524957878034683703337818421444017138688124249984418618129271198533315382567321870421530631197748535214670955334626336610864667332292409879849256691109516143618601548909740241913509623043612196128165950518666022030715613684732364660868905014263913906515063908199378852318365059897299125404479443425166774299659811849233151555272883274028352688442408752811283289980625912673699546247341543333500147231430612750390307397135252069338173843322950701049061867539433130784798015655130384758155685236218010419650255596181934986315913233036096461905990236112681196023441843363334594927631946101716652913823717182394299216272538461776065694542297877071383198817036964588689811863210976900355735884624464835706291453052757101278872027965364479724025405448132748391794128826423835171949197209797145936887537198729130831738033911016128547415377377715951728084111627597186384924222802373441925469991983672192131287035585307966942713416391033882754318613643490100943197409047331014476299861725424423355612237435715825933382804986243892498222780715951762757847109475119033482241412025182688713728193104253478196128440176479531505057110722974314569915223451643121848657575786528197564843508958384722923534559464521215831657751471298708225909292655638836651120681943836904116252668710044560243704200663709001941185557160472044643696932850060046928140507119069261393993902735534545567470314903886022024639948260501762431969305640666366626090207048887438898907498152865444381862917382901051820869936382661868303915273264581286782806601337500096593364625146091723180312930347877421234679118454791311109897794648216922505629399956793483801699157439700537542134485874586856047286751065423341893839099110586465595113646061055156838541217459801807133163612573079611168343863767667307354583494789788316330129240800836356825939157113130978030516441716682518346573675934198084958947940983292500086389778563494693212473426103062713745077286156922596628573857905533240641849018451328284632709269753830867308409142247659474439973348130810986399417379789657010687026734161967196591599588537834822988270125605842365589539690306474965584147981310997157542043256395776070485100881578291408250777738559790129129407309462785944505859412273194812753225152324801503466519048228961406646890305102510916237770448486230229488966711380555607956620732449373374027836767300203011615227008921843515652121379215748206859356920790214502277133099987729459596952817044582181956080965811702798062669891205061560742325686842271306295009864421853470810407128917646906550836129916694778023822502789667843489199409657361704586786242554006942516693979292624714524945408858422726153755260071904336329196375777502176005195800693847635789586878489536872122898557806826518192703632099480155874455575175312736471421295536494084385586615208012115079075068553344489258693283859653013272046970694571546959353658571788894862333292465202735853188533370948455403336565356988172582528918056635488363743793348411845580168331827676834646291995605513470039147876808640322629616641560667508153710646723108461964247537490553744805318226002710216400980584497526023035640038083472053149941172965736785066421400842696497103241919182121213206939769143923368374709228267738708132236680086924703491586840991153098315412063566123187504305467536983230827966457417620806593177265685841681837966106144963432544111706941700222657817358351259821080769101961052229263879745049019254311900620561906577452416191913187533984049343976823310298465893318373015809592522829206820862230332585280119266496314441316442773003237792274712330696417149945532261035475145631290668854345426869788447742981777493710117614651624183616680254815296335308490849943006763654806102940094693750609845588558043970485914449584445079978497045583550685408745163316464118083123079704389849190506587586425810738422420591191941674182490452700288263983057950057341711487031187142834184499153456702915280104485145176055306971441761368582384102787659324662689978418319620312262421177391477208004883578333569204533935953254564897028558589735505751235129536540502842081022785248776603574246366673148680279486052445782673626230852978265057114624846595914210278122788941448163994973881884622768244851622051817076722169863265701654316919742651230041757329904473537672536845792754365412826553581858046840069367718605020070547247548400805530424951854495267247261347318174742180078574693465447136036975884118029408039616746946288540679172138601225419503819704538417268006398820656328792839582708510919958839448297775647152026132871089526163417707151642899487953564854553553148754978134009964854498635824847690590033116961303766127923464323129706628411307427046202032013368350385425360313636763575212604707425311209233402837482949453104727418969287275572027615272268283376741393425652653283068469997597097750005560889932685025049212884068274139881631540456490350775871680074055685724021758685439053228133770707415830756269628316955687424060527726485853050611356384851965918968649596335568216975437621430778665934730450164822432964891270709898076676625671517269062058815549666382573829274182082278960684488222983394816670984039024283514306813767253460126007269262969468672750794346190439996618979611928750519442356402644303271737341591281496056168353988188569484045342311424613559925272330064881627466723523751234311893442118885085079358163848994487544756331689213869675574302737953785262542329024881047181939037220666894702204258836895840939998453560948869946833852579675161882159410981624918741813364726965123980677561947912557957446471427868624053750576104204267149366084980238274680575982591331006919941904651906531171908926077949119217946407355129633864523035673345588033313197080365457184791550432654899559705862888286866606618021882248602144999973122164138170653480175510438406624412822803616648904257377640956326482825258407669045608439490325290526337532316509087681336614242398309530806549661879381949120033919489494065132398816642080088395554942237096734840072642705701165089075196155370186264797456381187856175457113400473810762763014953309735174180655479112660938034311378532532883533352024934365979129341284854970946826329075830193072665337782559314331110963848053940859283988907796210479847919686876539987477095912788727475874439806779824968278272200926449944559380414608770641941810440758269805688038949654616587983904660587645341810289907194293021774519976104495043196841503455514044820928933378657363052830619990077748726922998608279053171691876578860908941817057993404890218441559791092676862796597583952483926734883634745651687016166240642424241228961118010615682342539392180052483454723779219911228595914191877491793823340010078128326506710281781396029120914720100947878752551263372884222353869490067927664511634758101193875319657242121476038284774774571704578610417385747911301908583877890152334343013005282797038580359815182929600305682612091950943737325454171056383887047528950563961029843641360935641632589408137981511693338619797339821670761004607980096016024823096943043806956620123213650140549586250615282588033022908385812478469315720323233601899469437647726721879376826431828382603564520699468630216048874528424363593558622333506235945002890558581611275341783750455936126130852640828051213873177490200249552738734585956405160830583053770732533971552620444705429573538361113677523169972740292941674204423248113875075631319078272188864053374694213842169928862940479635305150560788126366206497231257579019598873041195626227343728900516561111094111745277965482790471250581999077498063821559376885546498822938985408291325129076478386322494781016753491693489288104203015610283386143827378160946341335383578340765314321417150655877547820252454780657301342277470616744241968952613164274104695474621483756288299771804186785084546965619150908695874251184435837306590951460980451247409411373899927822492983367796011015387096129749705566301637307202750734759922943792393824427421186158236161317886392553095117188421298508307238259729144142251579403883011359083331651858234967221259621812507058113759495525022747274674369887131926670769299199084467161228738858457584622726573330753735572823951616964175198675012681745429323738294143824814377139861906716657572945807804820559511881687188075212971832636442155336787751274766940790117057509819575084563565217389544179875074523854455200133572033332379895074393905312918212255259833790909463630202185353848854825062897715616963860712382771725621313460549401770413581731931763370136332252819127547191443450920711848838366818174263342949611870091503049165339464763717766439120798347494627397822171502090670190302469762151278521956142070806461631373236517853976292092025500288962012970141379640038055734949269073535145961208674796547733692958773628635660143767964038430796864138563447801328261284589184898528048048844180821639423974014362903481665458114454366460032490618763039502356402044530748210241366895196644221339200757479128683805175150634662569391937740283512075666260829890491877287833852178522792045771846965855278790447562192663992008409302075673925363735628390829817577902153202106409617373283598494066652141198183810884515459772895164572131897797907491941013148368544639616904607030107596818933741217575988165127000761262789169510406315857637534787420070222051070891257612361658026806815858499852631465878086616800733264676830206391697203064894405628195406190685242003053463156621891327309069687353181641094514288036605995220248248886711554429104721929134248346438705368508648749099178812670565665387191049721820042371492740164460943459845392536706132210616533085662021188968234005752675486101476993688738209584552211571923479686888160853631615862880150395949418529489227074410828207169303387818084936204018255222271010985653444817207470756019245915599431072949578197878590578940052540122867517142511184356437184053563024181225473266093302710397968091064939272722683035410467632591355279683837705019855234621222858410557119921731717969804339317707750755627056047831779844447637560254637033369247114220815519973691371975163241302748712199863404548248524570118553342675264715978310731245663429805221455494156252724028915333354349341217862037007260315279870771872491234494477147909520734761385425485311552773301030342476835865496093722324007154518129732692081058424090557725645803681462234493189708138897143299831347617799679712453782310703739151473878692119187566700319321281896803322696594459286210607438827416919465162267632540665070881071030394178860564893769816734159025925194611823642945652669372203155504700213598846292758012527715422016629954863130324912311029627923723899766416803497141226527931907636326136814145516376656559839788489381733082668779901962886932296597379951931621187215455287394170243669885593888793316744533363119541518404088283815193421234122820030950313341050704760159987985472529190665222479319715440331794836837373220821885773341623856441380700541913530245943913502554531886454796252260251762928374330465102361057583514550739443339610216229675461415781127197001738611494279501411253280621254775810512972088465263158094806633687670147310733540717710876615935856814098212967730759197382973441445256688770855324570888958320993823432102718224114763732791357568615421252849657903335093152776925505845644010552192644505312073756287744998163646332835816140330175813967359427327690448920361880386754955751806890058532927201493923500525845146706982628548257883267398735220457228239290207144822219885587102896991935873074277815159757620764023951243860202032596596250212578349957710085626386118233813318509014686577064010676278617583772772895892746039403930337271873850536912957126715066896688493880885142943609962012966759079225082275313812849851526902931700263136328942095797577959327635531162066753488651317323872438748063513314512644889967589828812925480076425186586490241111127301357197181381602583178506932244007998656635371544088454866393181708395735780799059730839094881804060935959190907473960904410150516321749681412100765719177483767355751000733616922386537429079457803200042337452807566153042929014495780629634138383551783599764708851349004856973697965238695845994595592090709058956891451141412684505462117945026611750166928260250950770778211950432617383223562437601776799362796099368975191394965033358507155418436456852616674243688920371037495328425927131610537834980740739158633817967658425258036737206469351248652238481341663808061505704829059890696451936440018597120425723007316410009916987524260377362177763430621616744884930810929901009517974541564251204822086714586849255132444266777127863728211331536224301091824391243380214046242223349153559516890816288487989988273630445372432174280215755777967021666317047969728172483392841015642274507271779269399929740308072770395013581545142494049026536105825409373114653104943382484379718606937214444600826798002471229489405761853892203425608302697052876621377373594394224114707074072902725461307358541745691419446487624357682397065703184168467540733466346293673983620004041400714054277632480132742202685393698869787607009590048684650626771363070979821006557285101306601010780633743344773073478653881742681230743766066643312775356466578603715192922768440458273283243808212841218776132042460464900801054731426749260826922155637405486241717031027919996942645620955619816454547662045022411449404749349832206807191352767986747813458203859570413466177937228534940031631599544093684089572533438702986717829770373332806801764639502090023941931499115009105276821119510999063166150311585582835582607179410052528583611369961303442790173811787412061288182062023263849861515656451230047792967563618345768105043341769543067538041113928553792529241347339481050532025708728186307291158911335942014761872664291564036371927602306283840650425441742335464549987055318726887926424102147363698625463747159744354943443899730051742525110877357886390946812096673428152585919924857640488055071329814299359911463239919113959926752576359007446572810191805841807342227734721397723218231771716916400108826112549093361186780575722391018186168549108500885272274374212086524852372456248697662245384819298671129452945515497030585919307198497105414181636968976131126744027009648667545934567059936995464500558921628047976365686133316563907395703272034389175415267500915011198856872708848195531676931681272892143031376818016445477367518353497857924276463354162433601125960252109501612264110346083465648235597934274056868849224458745493776752120324703803035491157544831295275891939893680876327685438769557694881422844311998595700727521393176837831770339130423060958999137314684569010422095161967070506420256733873446115655276175992727151877660010238944760539789516945708802728736225121076224091810066700883474737605156285533943565843756271241244457651663064085939507947550920463932245202535463634444791755661725962187199279186575490857852950012840229035061514937310107009446151011613712423761426722541732055959202782129325725947146417224977321316381845326555279604270541871496236585252458648933254145062642337885651464670604298564781968461593663288954299780722542264790400616019751975007460545150060291806638271497016110987951336633771378434416194053121445291855180136575558667615019373029691932076120009255065081583275508499340768797252369987023567931026804136745718956641431852679054717169962990363015545645090044802789055701968328313630718997699153166679208958768572290600915472919636381673596673959975710326015571920237348580521128117458610065152598883843114511894880552129145775699146577530041384717124577965048175856395072895337539755822087777506072339445587895905719156733", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
12
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/ackermann#ackermann_5_0"), iri("https://eyereasoner.github.io/eyeling/examples/ackermann#value"), literal("65533", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
@@ -0,0 +1,4 @@
1
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/age#alice"), iri("https://eyereasoner.github.io/eyeling/examples/age#adult"), literal("true", iri("http://www.w3.org/2001/XMLSchema#boolean"), "", "")).
2
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/age#carol"), iri("https://eyereasoner.github.io/eyeling/examples/age#adult"), literal("true", iri("http://www.w3.org/2001/XMLSchema#boolean"), "", "")).
3
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/age#carol"), iri("https://eyereasoner.github.io/eyeling/examples/age#senior"), literal("true", iri("http://www.w3.org/2001/XMLSchema#boolean"), "", "")).
4
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/age#carol"), iri("https://eyereasoner.github.io/eyeling/examples/age#discount"), iri("https://eyereasoner.github.io/eyeling/examples/age#seniorPass")).
@@ -0,0 +1 @@
1
+ rdf(iri("https://eyereasoner.github.io/ns#alice"), iri("https://schema.org/name"), literal("Alice", iri("http://www.w3.org/2001/XMLSchema#string"), "", "")).
@@ -0,0 +1,3 @@
1
+ rdf([iri("https://eyereasoner.github.io/eyeling/examples/allen#a"), iri("https://eyereasoner.github.io/eyeling/examples/allen#b")], iri("https://eyereasoner.github.io/eyeling/examples/allen#allen"), iri("https://eyereasoner.github.io/eyeling/examples/allen#meets")).
2
+ rdf([iri("https://eyereasoner.github.io/eyeling/examples/allen#b"), iri("https://eyereasoner.github.io/eyeling/examples/allen#c")], iri("https://eyereasoner.github.io/eyeling/examples/allen#allen"), iri("https://eyereasoner.github.io/eyeling/examples/allen#overlaps")).
3
+ rdf([iri("https://eyereasoner.github.io/eyeling/examples/allen#a"), iri("https://eyereasoner.github.io/eyeling/examples/allen#d")], iri("https://eyereasoner.github.io/eyeling/examples/allen#allen"), iri("https://eyereasoner.github.io/eyeling/examples/allen#starts")).
@@ -0,0 +1,9 @@
1
+ rdf(iri("urn:example#a"), iri("urn:example#ancestor"), iri("urn:example#b")).
2
+ rdf(iri("urn:example#b"), iri("urn:example#ancestor"), iri("urn:example#c")).
3
+ rdf(iri("urn:example#c"), iri("urn:example#ancestor"), iri("urn:example#d")).
4
+ rdf(iri("urn:example#a"), iri("urn:example#ancestor"), iri("urn:example#c")).
5
+ rdf(iri("urn:example#a"), iri("urn:example#ancestor"), iri("urn:example#d")).
6
+ rdf(iri("urn:example#b"), iri("urn:example#ancestor"), iri("urn:example#d")).
7
+ rdf(iri("urn:example#a"), iri("urn:example#reaches"), iri("urn:example#b")).
8
+ rdf(iri("urn:example#a"), iri("urn:example#reaches"), iri("urn:example#c")).
9
+ rdf(iri("urn:example#a"), iri("urn:example#reaches"), iri("urn:example#d")).
@@ -0,0 +1 @@
1
+ rdf(literal("5", iri("http://www.w3.org/2001/XMLSchema#integer"), "", ""), iri("https://eyereasoner.github.io/ns#isIndeedMoreInterestingThan"), literal("3", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
@@ -0,0 +1,8 @@
1
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/basic-monadic#i0"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/basic-monadic#N1")).
2
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/basic-monadic#i1"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/basic-monadic#N1")).
3
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/basic-monadic#i2"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/basic-monadic#N2")).
4
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/basic-monadic#i0"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/basic-monadic#N2")).
5
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/basic-monadic#i1"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/basic-monadic#N2")).
6
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/basic-monadic#i2"), iri("https://eyereasoner.github.io/eyeling/examples/basic-monadic#accepted"), literal("true", iri("http://www.w3.org/2001/XMLSchema#boolean"), "", "")).
7
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/basic-monadic#i0"), iri("https://eyereasoner.github.io/eyeling/examples/basic-monadic#accepted"), literal("true", iri("http://www.w3.org/2001/XMLSchema#boolean"), "", "")).
8
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/basic-monadic#i1"), iri("https://eyereasoner.github.io/eyeling/examples/basic-monadic#accepted"), literal("true", iri("http://www.w3.org/2001/XMLSchema#boolean"), "", "")).
@@ -0,0 +1,2 @@
1
+ rdf(iri("https://eyereasoner.github.io/ns#alice"), iri("https://eyereasoner.github.io/ns#heightSquared"), literal("3.24", iri("http://www.w3.org/2001/XMLSchema#decimal"), "", "")).
2
+ rdf(iri("https://eyereasoner.github.io/ns#alice"), iri("https://eyereasoner.github.io/ns#bmi"), literal("22.22222222222222", iri("http://www.w3.org/2001/XMLSchema#decimal"), "", "")).
@@ -0,0 +1,3 @@
1
+ rdf(iri("https://eyereasoner.github.io/ns#catKoko"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/ns#Cat")).
2
+ rdf(iri("https://eyereasoner.github.io/ns#britishKoko"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/ns#BritishShortHair")).
3
+ rdf(iri("https://eyereasoner.github.io/ns#test"), iri("https://eyereasoner.github.io/ns#is"), literal("true", iri("http://www.w3.org/2001/XMLSchema#boolean"), "", "")).
@@ -0,0 +1,3 @@
1
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/collatz#case6"), iri("https://eyereasoner.github.io/eyeling/examples/collatz#next"), literal("3", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
2
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/collatz#case7"), iri("https://eyereasoner.github.io/eyeling/examples/collatz#next"), literal("22", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
3
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/collatz#case7"), iri("https://eyereasoner.github.io/eyeling/examples/collatz#jumpsAboveTen"), literal("true", iri("http://www.w3.org/2001/XMLSchema#boolean"), "", "")).
@@ -0,0 +1 @@
1
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/collection#collection"), iri("https://eyereasoner.github.io/eyeling/examples/collection#length"), literal("3", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
@@ -0,0 +1,5 @@
1
+ rdf([iri("https://eyereasoner.github.io/eyeling/examples/complex#z1"), iri("https://eyereasoner.github.io/eyeling/examples/complex#z1")], iri("https://eyereasoner.github.io/eyeling/examples/complex#sum"), [literal("6", iri("http://www.w3.org/2001/XMLSchema#integer"), "", ""), literal("8", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")]).
2
+ rdf([iri("https://eyereasoner.github.io/eyeling/examples/complex#z1"), iri("https://eyereasoner.github.io/eyeling/examples/complex#z2")], iri("https://eyereasoner.github.io/eyeling/examples/complex#sum"), [literal("8", iri("http://www.w3.org/2001/XMLSchema#integer"), "", ""), literal("2", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")]).
3
+ rdf([iri("https://eyereasoner.github.io/eyeling/examples/complex#z2"), iri("https://eyereasoner.github.io/eyeling/examples/complex#z1")], iri("https://eyereasoner.github.io/eyeling/examples/complex#sum"), [literal("8", iri("http://www.w3.org/2001/XMLSchema#integer"), "", ""), literal("2", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")]).
4
+ rdf([iri("https://eyereasoner.github.io/eyeling/examples/complex#z2"), iri("https://eyereasoner.github.io/eyeling/examples/complex#z2")], iri("https://eyereasoner.github.io/eyeling/examples/complex#sum"), [literal("10", iri("http://www.w3.org/2001/XMLSchema#integer"), "", ""), literal("-4", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")]).
5
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/complex#example"), iri("https://eyereasoner.github.io/eyeling/examples/complex#complexSum"), [literal("8", iri("http://www.w3.org/2001/XMLSchema#integer"), "", ""), literal("2", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")]).
@@ -0,0 +1,4 @@
1
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/context-association#ctx1"), iri("https://eyereasoner.github.io/eyeling/examples/context-association#mentions"), iri("https://eyereasoner.github.io/eyeling/examples/context-association#alice")).
2
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/context-association#ctx2"), iri("https://eyereasoner.github.io/eyeling/examples/context-association#mentions"), iri("https://eyereasoner.github.io/eyeling/examples/context-association#bob")).
3
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/context-association#alice"), iri("https://eyereasoner.github.io/eyeling/examples/context-association#mentionedIn"), iri("https://eyereasoner.github.io/eyeling/examples/context-association#ctx1")).
4
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/context-association#bob"), iri("https://eyereasoner.github.io/eyeling/examples/context-association#mentionedIn"), iri("https://eyereasoner.github.io/eyeling/examples/context-association#ctx2")).
@@ -0,0 +1,4 @@
1
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/control-system#loop1"), iri("https://eyereasoner.github.io/eyeling/examples/control-system#absoluteError"), literal("3", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
2
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/control-system#loop2"), iri("https://eyereasoner.github.io/eyeling/examples/control-system#absoluteError"), literal("11", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
3
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/control-system#loop1"), iri("https://eyereasoner.github.io/eyeling/examples/control-system#status"), iri("https://eyereasoner.github.io/eyeling/examples/control-system#ok")).
4
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/control-system#loop2"), iri("https://eyereasoner.github.io/eyeling/examples/control-system#status"), iri("https://eyereasoner.github.io/eyeling/examples/control-system#alarm")).
@@ -0,0 +1,3 @@
1
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/crypto-extra#payload"), iri("https://eyereasoner.github.io/eyeling/examples/crypto-extra#sha256Length"), literal("64", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
2
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/crypto-extra#payload"), iri("https://eyereasoner.github.io/eyeling/examples/crypto-extra#sha256"), literal("4b357736281309b7e52867fdd0014d831067c8a2060446e6d3315215ca0cc38f", iri("http://www.w3.org/2001/XMLSchema#string"), "", "")).
3
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/crypto-extra#payload"), iri("https://eyereasoner.github.io/eyeling/examples/crypto-extra#hashLooksComplete"), literal("true", iri("http://www.w3.org/2001/XMLSchema#boolean"), "", "")).
@@ -0,0 +1,2 @@
1
+ rdf(iri("https://eyereasoner.github.io/ns#payload"), iri("https://eyereasoner.github.io/ns#sha256"), literal("4b357736281309b7e52867fdd0014d831067c8a2060446e6d3315215ca0cc38f", iri("http://www.w3.org/2001/XMLSchema#string"), "", "")).
2
+ rdf(iri("https://eyereasoner.github.io/ns#payload"), iri("https://eyereasoner.github.io/ns#md5"), literal("eda2474c5d4eae9c99e98cf0831257df", iri("http://www.w3.org/2001/XMLSchema#string"), "", "")).
@@ -0,0 +1,32 @@
1
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#ind"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#N1")).
2
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#ind"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#I1")).
3
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#ind"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#J1")).
4
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#ind"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#N2")).
5
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#ind"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#I2")).
6
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#ind"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#J2")).
7
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#ind"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#N3")).
8
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#ind"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#I3")).
9
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#ind"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#J3")).
10
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#ind"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#N4")).
11
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#ind"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#I4")).
12
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#ind"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#J4")).
13
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#ind"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#N5")).
14
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#ind"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#I5")).
15
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#ind"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#J5")).
16
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#ind"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#N6")).
17
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#ind"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#I6")).
18
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#ind"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#J6")).
19
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#ind"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#N7")).
20
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#ind"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#I7")).
21
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#ind"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#J7")).
22
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#ind"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#N8")).
23
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#ind"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#I8")).
24
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#ind"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#J8")).
25
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#ind"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#N9")).
26
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#ind"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#I9")).
27
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#ind"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#J9")).
28
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#ind"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#N10")).
29
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#ind"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#I10")).
30
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#ind"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#J10")).
31
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#ind"), iri("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"), iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#A2")).
32
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#test"), iri("https://eyereasoner.github.io/eyeling/examples/deep-taxonomy-10#is"), literal("true", iri("http://www.w3.org/2001/XMLSchema#boolean"), "", "")).
@@ -0,0 +1,4 @@
1
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/derived-backward-rule#bob"), iri("https://eyereasoner.github.io/eyeling/examples/derived-backward-rule#childOf"), iri("https://eyereasoner.github.io/eyeling/examples/derived-backward-rule#alice")).
2
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/derived-backward-rule#diana"), iri("https://eyereasoner.github.io/eyeling/examples/derived-backward-rule#childOf"), iri("https://eyereasoner.github.io/eyeling/examples/derived-backward-rule#claire")).
3
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/derived-backward-rule#bob"), iri("https://eyereasoner.github.io/eyeling/examples/derived-backward-rule#hasParent"), iri("https://eyereasoner.github.io/eyeling/examples/derived-backward-rule#alice")).
4
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/derived-backward-rule#diana"), iri("https://eyereasoner.github.io/eyeling/examples/derived-backward-rule#hasParent"), iri("https://eyereasoner.github.io/eyeling/examples/derived-backward-rule#claire")).
@@ -0,0 +1,2 @@
1
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/derived-rule#test"), iri("https://eyereasoner.github.io/eyeling/examples/derived-rule#is"), literal("true", iri("http://www.w3.org/2001/XMLSchema#boolean"), "", "")).
2
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/derived-rule#Minka"), iri("https://eyereasoner.github.io/eyeling/examples/derived-rule#compatibleWith"), iri("https://eyereasoner.github.io/eyeling/examples/derived-rule#Charly")).
@@ -0,0 +1,3 @@
1
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/digital-product-passport#bike1"), iri("https://eyereasoner.github.io/eyeling/examples/digital-product-passport#hasEuSerial"), literal("true", iri("http://www.w3.org/2001/XMLSchema#boolean"), "", "")).
2
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/digital-product-passport#bike1"), iri("https://eyereasoner.github.io/eyeling/examples/digital-product-passport#hasBatteryPassport"), literal("true", iri("http://www.w3.org/2001/XMLSchema#boolean"), "", "")).
3
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/digital-product-passport#bike1"), iri("https://eyereasoner.github.io/eyeling/examples/digital-product-passport#passportStatus"), iri("https://eyereasoner.github.io/eyeling/examples/digital-product-passport#ready")).
@@ -0,0 +1,9 @@
1
+ rdf([iri("https://eyereasoner.github.io/eyeling/examples/dijkstra#a"), iri("https://eyereasoner.github.io/eyeling/examples/dijkstra#b")], iri("https://eyereasoner.github.io/eyeling/examples/dijkstra#pathCost"), literal("2", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
2
+ rdf([iri("https://eyereasoner.github.io/eyeling/examples/dijkstra#a"), iri("https://eyereasoner.github.io/eyeling/examples/dijkstra#c")], iri("https://eyereasoner.github.io/eyeling/examples/dijkstra#pathCost"), literal("5", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
3
+ rdf([iri("https://eyereasoner.github.io/eyeling/examples/dijkstra#b"), iri("https://eyereasoner.github.io/eyeling/examples/dijkstra#c")], iri("https://eyereasoner.github.io/eyeling/examples/dijkstra#pathCost"), literal("1", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
4
+ rdf([iri("https://eyereasoner.github.io/eyeling/examples/dijkstra#b"), iri("https://eyereasoner.github.io/eyeling/examples/dijkstra#d")], iri("https://eyereasoner.github.io/eyeling/examples/dijkstra#pathCost"), literal("4", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
5
+ rdf([iri("https://eyereasoner.github.io/eyeling/examples/dijkstra#c"), iri("https://eyereasoner.github.io/eyeling/examples/dijkstra#d")], iri("https://eyereasoner.github.io/eyeling/examples/dijkstra#pathCost"), literal("1", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
6
+ rdf([iri("https://eyereasoner.github.io/eyeling/examples/dijkstra#a"), iri("https://eyereasoner.github.io/eyeling/examples/dijkstra#c")], iri("https://eyereasoner.github.io/eyeling/examples/dijkstra#pathCost"), literal("3", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
7
+ rdf([iri("https://eyereasoner.github.io/eyeling/examples/dijkstra#a"), iri("https://eyereasoner.github.io/eyeling/examples/dijkstra#d")], iri("https://eyereasoner.github.io/eyeling/examples/dijkstra#pathCost"), literal("6", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
8
+ rdf([iri("https://eyereasoner.github.io/eyeling/examples/dijkstra#b"), iri("https://eyereasoner.github.io/eyeling/examples/dijkstra#d")], iri("https://eyereasoner.github.io/eyeling/examples/dijkstra#pathCost"), literal("2", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
9
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/dijkstra#route"), iri("https://eyereasoner.github.io/eyeling/examples/dijkstra#candidateCost"), literal("6", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
@@ -0,0 +1 @@
1
+ rdf(iri("https://eyereasoner.github.io/ns#alice"), iri("https://eyereasoner.github.io/ns#mustHave"), iri("https://eyereasoner.github.io/ns#dogLicense")).
@@ -0,0 +1,5 @@
1
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/drone-corridor#c1"), iri("https://eyereasoner.github.io/eyeling/examples/drone-corridor#allowed"), literal("true", iri("http://www.w3.org/2001/XMLSchema#boolean"), "", "")).
2
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/drone-corridor#c2"), iri("https://eyereasoner.github.io/eyeling/examples/drone-corridor#allowed"), literal("true", iri("http://www.w3.org/2001/XMLSchema#boolean"), "", "")).
3
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/drone-corridor#dock"), iri("https://eyereasoner.github.io/eyeling/examples/drone-corridor#canFlyTo"), iri("https://eyereasoner.github.io/eyeling/examples/drone-corridor#tower")).
4
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/drone-corridor#tower"), iri("https://eyereasoner.github.io/eyeling/examples/drone-corridor#canFlyTo"), iri("https://eyereasoner.github.io/eyeling/examples/drone-corridor#field")).
5
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/drone-corridor#mission"), iri("https://eyereasoner.github.io/eyeling/examples/drone-corridor#hasTwoHopRoute"), literal("true", iri("http://www.w3.org/2001/XMLSchema#boolean"), "", "")).
@@ -0,0 +1 @@
1
+ rdf(iri("http://example.org/socrates#test"), iri("http://example.org/socrates#is"), literal("true", iri("http://www.w3.org/2001/XMLSchema#boolean"), "", "")).
@@ -0,0 +1,2 @@
1
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/equivalence-classes#classA"), iri("https://eyereasoner.github.io/eyeling/examples/equivalence-classes#sameClassAs"), iri("https://eyereasoner.github.io/eyeling/examples/equivalence-classes#classB")).
2
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/equivalence-classes#classB"), iri("https://eyereasoner.github.io/eyeling/examples/equivalence-classes#sameClassAs"), iri("https://eyereasoner.github.io/eyeling/examples/equivalence-classes#classA")).
@@ -0,0 +1,3 @@
1
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/euler-identity#euler"), iri("https://eyereasoner.github.io/eyeling/examples/euler-identity#cosPi"), literal("-1", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
2
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/euler-identity#euler"), iri("https://eyereasoner.github.io/eyeling/examples/euler-identity#sinPi"), literal("1.2246467991473532e-16", iri("http://www.w3.org/2001/XMLSchema#decimal"), "", "")).
3
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/euler-identity#euler"), iri("https://eyereasoner.github.io/eyeling/examples/euler-identity#cosPiAtMinusOne"), literal("true", iri("http://www.w3.org/2001/XMLSchema#boolean"), "", "")).
@@ -0,0 +1,4 @@
1
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/existential-rule#Socrates"), iri("https://eyereasoner.github.io/eyeling/examples/existential-rule#hasNature"), bnode("humanNature")).
2
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/existential-rule#Plato"), iri("https://eyereasoner.github.io/eyeling/examples/existential-rule#hasNature"), bnode("humanNature")).
3
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/existential-rule#Socrates"), iri("https://eyereasoner.github.io/eyeling/examples/existential-rule#witnessed"), literal("true", iri("http://www.w3.org/2001/XMLSchema#boolean"), "", "")).
4
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/existential-rule#Plato"), iri("https://eyereasoner.github.io/eyeling/examples/existential-rule#witnessed"), literal("true", iri("http://www.w3.org/2001/XMLSchema#boolean"), "", "")).
@@ -0,0 +1,3 @@
1
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/expression-eval#e1"), iri("https://eyereasoner.github.io/eyeling/examples/expression-eval#value"), literal("5", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
2
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/expression-eval#e2"), iri("https://eyereasoner.github.io/eyeling/examples/expression-eval#value"), literal("20", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
3
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/expression-eval#answer"), iri("https://eyereasoner.github.io/eyeling/examples/expression-eval#value"), literal("20", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
@@ -0,0 +1,6 @@
1
+ rdf(iri("https://eyereasoner.github.io/ns#bob"), iri("https://eyereasoner.github.io/ns#siblingOf"), iri("https://eyereasoner.github.io/ns#carol")).
2
+ rdf(iri("https://eyereasoner.github.io/ns#carol"), iri("https://eyereasoner.github.io/ns#siblingOf"), iri("https://eyereasoner.github.io/ns#bob")).
3
+ rdf(iri("https://eyereasoner.github.io/ns#dave"), iri("https://eyereasoner.github.io/ns#cousinOf"), iri("https://eyereasoner.github.io/ns#erin")).
4
+ rdf(iri("https://eyereasoner.github.io/ns#erin"), iri("https://eyereasoner.github.io/ns#cousinOf"), iri("https://eyereasoner.github.io/ns#dave")).
5
+ rdf(iri("https://eyereasoner.github.io/ns#dave"), iri("https://eyereasoner.github.io/ns#relatedTo"), iri("https://eyereasoner.github.io/ns#erin")).
6
+ rdf(iri("https://eyereasoner.github.io/ns#erin"), iri("https://eyereasoner.github.io/ns#relatedTo"), iri("https://eyereasoner.github.io/ns#dave")).
@@ -0,0 +1,4 @@
1
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/fastpow#case1"), iri("https://eyereasoner.github.io/eyeling/examples/fastpow#power"), literal("1024", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
2
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/fastpow#case2"), iri("https://eyereasoner.github.io/eyeling/examples/fastpow#power"), literal("2187", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
3
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/fastpow#case1"), iri("https://eyereasoner.github.io/eyeling/examples/fastpow#largePower"), literal("true", iri("http://www.w3.org/2001/XMLSchema#boolean"), "", "")).
4
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/fastpow#case2"), iri("https://eyereasoner.github.io/eyeling/examples/fastpow#largePower"), literal("true", iri("http://www.w3.org/2001/XMLSchema#boolean"), "", "")).
@@ -0,0 +1,6 @@
1
+ rdf(literal("0", iri("http://www.w3.org/2001/XMLSchema#integer"), "", ""), iri("https://eyereasoner.github.io/eyeling/examples/fibonacci#fibonacci"), literal("0", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
2
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/fibonacci#fibonacci_0"), iri("https://eyereasoner.github.io/eyeling/examples/fibonacci#value"), literal("0", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
3
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/fibonacci#fibonacci_1"), iri("https://eyereasoner.github.io/eyeling/examples/fibonacci#value"), literal("1", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
4
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/fibonacci#fibonacci_10"), iri("https://eyereasoner.github.io/eyeling/examples/fibonacci#value"), literal("55", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
5
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/fibonacci#fibonacci_100"), iri("https://eyereasoner.github.io/eyeling/examples/fibonacci#value"), literal("354224848179261915075", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
6
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/fibonacci#fibonacci_1000"), iri("https://eyereasoner.github.io/eyeling/examples/fibonacci#value"), literal("43466557686937456435688527675040625802564660517371780402481729089536555417949051890403879840079255169295922593080322634775209689623239873322471161642996440906533187938298969649928516003704476137795166849228875", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
@@ -0,0 +1,25 @@
1
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/french-cities#paris"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#path"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#orleans")).
2
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/french-cities#paris"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#path"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#chartres")).
3
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/french-cities#paris"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#path"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#amiens")).
4
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/french-cities#orleans"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#path"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#blois")).
5
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/french-cities#orleans"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#path"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#bourges")).
6
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/french-cities#blois"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#path"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#tours")).
7
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/french-cities#chartres"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#path"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#lemans")).
8
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/french-cities#lemans"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#path"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#angers")).
9
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/french-cities#lemans"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#path"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#tours")).
10
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/french-cities#angers"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#path"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#nantes")).
11
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/french-cities#paris"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#path"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#blois")).
12
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/french-cities#paris"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#path"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#bourges")).
13
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/french-cities#paris"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#path"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#lemans")).
14
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/french-cities#orleans"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#path"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#tours")).
15
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/french-cities#chartres"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#path"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#angers")).
16
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/french-cities#chartres"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#path"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#tours")).
17
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/french-cities#lemans"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#path"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#nantes")).
18
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/french-cities#angers"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#canReach"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#nantes")).
19
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/french-cities#paris"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#canReach"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#nantes")).
20
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/french-cities#chartres"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#canReach"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#nantes")).
21
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/french-cities#lemans"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#canReach"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#nantes")).
22
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/french-cities#report"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#reachableCity"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#paris")).
23
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/french-cities#report"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#reachableCity"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#chartres")).
24
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/french-cities#report"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#reachableCity"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#lemans")).
25
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/french-cities#report"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#reachableCity"), iri("https://eyereasoner.github.io/eyeling/examples/french-cities#angers")).
@@ -0,0 +1,2 @@
1
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/goldbach#twelve"), iri("https://eyereasoner.github.io/eyeling/examples/goldbach#goldbachWitness"), [iri("https://eyereasoner.github.io/eyeling/examples/goldbach#five"), iri("https://eyereasoner.github.io/eyeling/examples/goldbach#seven")]).
2
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/goldbach#eighteen"), iri("https://eyereasoner.github.io/eyeling/examples/goldbach#goldbachWitness"), [iri("https://eyereasoner.github.io/eyeling/examples/goldbach#seven"), iri("https://eyereasoner.github.io/eyeling/examples/goldbach#eleven")]).
@@ -0,0 +1,2 @@
1
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/good-cobbler#joe"), iri("https://eyereasoner.github.io/eyeling/examples/good-cobbler#goodAt"), iri("https://eyereasoner.github.io/eyeling/examples/good-cobbler#Cobbler")).
2
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/good-cobbler#test"), iri("https://eyereasoner.github.io/eyeling/examples/good-cobbler#hasGoodWorker"), iri("https://eyereasoner.github.io/eyeling/examples/good-cobbler#joe")).
@@ -0,0 +1,6 @@
1
+ rdf(iri("https://eyereasoner.github.io/ns#demo"), iri("https://eyereasoner.github.io/ns#firstNumber"), literal("3", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
2
+ rdf(iri("https://eyereasoner.github.io/ns#demo"), iri("https://eyereasoner.github.io/ns#restNumbers"), [literal("1", iri("http://www.w3.org/2001/XMLSchema#integer"), "", ""), literal("2", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")]).
3
+ rdf(iri("https://eyereasoner.github.io/ns#demo"), iri("https://eyereasoner.github.io/ns#reverseNumbers"), [literal("2", iri("http://www.w3.org/2001/XMLSchema#integer"), "", ""), literal("1", iri("http://www.w3.org/2001/XMLSchema#integer"), "", ""), literal("3", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")]).
4
+ rdf(iri("https://eyereasoner.github.io/ns#demo"), iri("https://eyereasoner.github.io/ns#sortedWords"), [literal("alpha", iri("http://www.w3.org/2001/XMLSchema#string"), "", ""), literal("beta", iri("http://www.w3.org/2001/XMLSchema#string"), "", ""), literal("gamma", iri("http://www.w3.org/2001/XMLSchema#string"), "", "")]).
5
+ rdf(iri("https://eyereasoner.github.io/ns#demo"), iri("https://eyereasoner.github.io/ns#containsTwo"), literal("true", iri("http://www.w3.org/2001/XMLSchema#boolean"), "", "")).
6
+ rdf(iri("https://eyereasoner.github.io/ns#demo"), iri("https://eyereasoner.github.io/ns#flatNumbers"), [literal("1", iri("http://www.w3.org/2001/XMLSchema#integer"), "", ""), literal("2", iri("http://www.w3.org/2001/XMLSchema#integer"), "", ""), literal("3", iri("http://www.w3.org/2001/XMLSchema#integer"), "", ""), literal("4", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")]).
@@ -0,0 +1,5 @@
1
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/list-extra#shopping"), iri("https://eyereasoner.github.io/eyeling/examples/list-extra#first"), iri("https://eyereasoner.github.io/eyeling/examples/list-extra#tea")).
2
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/list-extra#shopping"), iri("https://eyereasoner.github.io/eyeling/examples/list-extra#rest"), [iri("https://eyereasoner.github.io/eyeling/examples/list-extra#milk"), iri("https://eyereasoner.github.io/eyeling/examples/list-extra#bread")]).
3
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/list-extra#shopping"), iri("https://eyereasoner.github.io/eyeling/examples/list-extra#reverse"), [iri("https://eyereasoner.github.io/eyeling/examples/list-extra#bread"), iri("https://eyereasoner.github.io/eyeling/examples/list-extra#milk"), iri("https://eyereasoner.github.io/eyeling/examples/list-extra#tea")]).
4
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/list-extra#shopping"), iri("https://eyereasoner.github.io/eyeling/examples/list-extra#length"), literal("3", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
5
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/list-extra#shopping"), iri("https://eyereasoner.github.io/eyeling/examples/list-extra#containsMilk"), literal("true", iri("http://www.w3.org/2001/XMLSchema#boolean"), "", "")).
@@ -0,0 +1,5 @@
1
+ rdf(iri("https://eyereasoner.github.io/ns#calc"), iri("https://eyereasoner.github.io/ns#sum"), literal("10", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
2
+ rdf(iri("https://eyereasoner.github.io/ns#calc"), iri("https://eyereasoner.github.io/ns#integerQuotient"), literal("5", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
3
+ rdf(iri("https://eyereasoner.github.io/ns#calc"), iri("https://eyereasoner.github.io/ns#remainder"), literal("1", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
4
+ rdf(iri("https://eyereasoner.github.io/ns#calc"), iri("https://eyereasoner.github.io/ns#power"), literal("256", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
5
+ rdf(iri("https://eyereasoner.github.io/ns#calc"), iri("https://eyereasoner.github.io/ns#absolute"), literal("3", iri("http://www.w3.org/2001/XMLSchema#integer"), "", "")).
@@ -0,0 +1,3 @@
1
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/string-extra#msg"), iri("https://eyereasoner.github.io/eyeling/examples/string-extra#sensor"), literal("A17", iri("http://www.w3.org/2001/XMLSchema#string"), "", "")).
2
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/string-extra#msg"), iri("https://eyereasoner.github.io/eyeling/examples/string-extra#greenText"), literal("sensor:A17 status:GREEN", iri("http://www.w3.org/2001/XMLSchema#string"), "", "")).
3
+ rdf(iri("https://eyereasoner.github.io/eyeling/examples/string-extra#msg"), iri("https://eyereasoner.github.io/eyeling/examples/string-extra#deviceId"), literal("device-A17", iri("http://www.w3.org/2001/XMLSchema#string"), "", "")).