eyeling 1.6.13 → 1.6.14

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 (75) hide show
  1. package/examples/output/age.n3 +0 -17
  2. package/examples/output/alignment-demo.n3 +0 -572
  3. package/examples/output/backward.n3 +0 -15
  4. package/examples/output/basic-monadic.n3 +0 -105
  5. package/examples/output/brussels-brew-club.n3 +0 -476
  6. package/examples/output/cat-koko.n3 +0 -108
  7. package/examples/output/cobalt-kepler-kitchen.n3 +0 -7064
  8. package/examples/output/complex.n3 +0 -46
  9. package/examples/output/control-system.n3 +0 -75
  10. package/examples/output/cranberry-calculus.n3 +0 -1313
  11. package/examples/output/crypto-builtins-tests.n3 +0 -60
  12. package/examples/output/deep-taxonomy-10.n3 +0 -602
  13. package/examples/output/deep-taxonomy-100.n3 +1 -5733
  14. package/examples/output/deep-taxonomy-1000.n3 +1 -57033
  15. package/examples/output/deep-taxonomy-10000.n3 +1 -570033
  16. package/examples/output/derived-backward-rule-2.n3 +0 -58
  17. package/examples/output/derived-backward-rule.n3 +0 -44
  18. package/examples/output/derived-rule.n3 +0 -42
  19. package/examples/output/dijkstra.n3 +0 -297
  20. package/examples/output/dog.n3 +0 -30
  21. package/examples/output/drone-corridor-planner.n3 +0 -799
  22. package/examples/output/easter.n3 +0 -3570
  23. package/examples/output/equals.n3 +0 -15
  24. package/examples/output/ev-roundtrip-planner.n3 +0 -392
  25. package/examples/output/existential-rule.n3 +0 -34
  26. package/examples/output/expression-eval.n3 +0 -20
  27. package/examples/output/family-cousins.n3 +0 -636
  28. package/examples/output/fibonacci.n3 +0 -36
  29. package/examples/output/french-cities.n3 +0 -484
  30. package/examples/output/good-cobbler.n3 +0 -22
  31. package/examples/output/gps.n3 +0 -62
  32. package/examples/output/gray-code-counter.n3 +0 -17
  33. package/examples/output/hanoi.n3 +0 -17
  34. package/examples/output/jade-eigen-loom.n3 +0 -4690
  35. package/examples/output/json-pointer.n3 +0 -529
  36. package/examples/output/json-reconcile-vat.n3 +0 -12882
  37. package/examples/output/light-eaters.n3 +0 -311
  38. package/examples/output/list-builtins-tests.n3 +0 -167
  39. package/examples/output/list-iterate.n3 +0 -124
  40. package/examples/output/lldm.n3 +0 -960
  41. package/examples/output/log-collect-all-in.n3 +0 -117
  42. package/examples/output/log-for-all-in.n3 +0 -27
  43. package/examples/output/log-not-includes.n3 +0 -59
  44. package/examples/output/log-skolem.n3 +0 -17
  45. package/examples/output/log-uri.n3 +0 -42
  46. package/examples/output/math-builtins-tests.n3 +0 -4434
  47. package/examples/output/minimal-skos-alignment.n3 +0 -39
  48. package/examples/output/monkey.n3 +0 -36
  49. package/examples/output/odrl-trust.n3 +0 -46
  50. package/examples/output/oslo-steps-library-scholarly.n3 +0 -1260
  51. package/examples/output/oslo-steps-workflow-composition.n3 +0 -180
  52. package/examples/output/peano.n3 +0 -23
  53. package/examples/output/pi.n3 +0 -17
  54. package/examples/output/pillar.n3 +0 -32
  55. package/examples/output/polygon.n3 +0 -17
  56. package/examples/output/rdf-list.n3 +0 -28
  57. package/examples/output/reordering.n3 +0 -26
  58. package/examples/output/ruby-runge-workshop.n3 +0 -613
  59. package/examples/output/rule-matching.n3 +0 -26
  60. package/examples/output/saffron-slopeworks.n3 +0 -1447
  61. package/examples/output/self-referential.n3 +0 -81
  62. package/examples/output/similar.n3 +0 -15
  63. package/examples/output/snaf.n3 +0 -23
  64. package/examples/output/socrates.n3 +0 -21
  65. package/examples/output/spectral-week.n3 +0 -350
  66. package/examples/output/string-builtins-tests.n3 +0 -240
  67. package/examples/output/topaz-markov-mill.n3 +0 -4178
  68. package/examples/output/traffic-skos-aggregate.n3 +0 -3151
  69. package/examples/output/turing.n3 +0 -36
  70. package/examples/output/ultramarine-simpson-forge.n3 +0 -3873
  71. package/examples/output/witch.n3 +0 -107
  72. package/examples/output/zebra.n3 +0 -111
  73. package/eyeling.js +97 -18
  74. package/package.json +1 -1
  75. package/test/examples.test.js +1 -1
@@ -1,258 +1,18 @@
1
1
  @prefix : <https://eyereasoner.github.io/ns#> .
2
2
 
3
- # ----------------------------------------------------------------------
4
- # Proof for derived triple:
5
- # :ok_string_concatenation_1 a :Pass .
6
- # It holds because the following instance of the rule body is provable:
7
- # ("hello" " " "world!") string:concatenation "hello world!" .
8
- # via the schematic forward rule:
9
- # {
10
- # ("hello" " " "world!") string:concatenation "hello world!" .
11
- # } => {
12
- # :ok_string_concatenation_1 a :Pass .
13
- # } .
14
- # Therefore the derived triple above is entailed by the rules and facts.
15
- # ----------------------------------------------------------------------
16
-
17
3
  :ok_string_concatenation_1 a :Pass .
18
-
19
- # ----------------------------------------------------------------------
20
- # Proof for derived triple:
21
- # :ok_string_contains_1 a :Pass .
22
- # It holds because the following instance of the rule body is provable:
23
- # "hello world!" string:contains "llo worl" .
24
- # via the schematic forward rule:
25
- # {
26
- # "hello world!" string:contains "llo worl" .
27
- # } => {
28
- # :ok_string_contains_1 a :Pass .
29
- # } .
30
- # Therefore the derived triple above is entailed by the rules and facts.
31
- # ----------------------------------------------------------------------
32
-
33
4
  :ok_string_contains_1 a :Pass .
34
-
35
- # ----------------------------------------------------------------------
36
- # Proof for derived triple:
37
- # :ok_string_containsIgnoringCase_1 a :Pass .
38
- # It holds because the following instance of the rule body is provable:
39
- # "hello world!" string:containsIgnoringCase "lLO woRl" .
40
- # via the schematic forward rule:
41
- # {
42
- # "hello world!" string:containsIgnoringCase "lLO woRl" .
43
- # } => {
44
- # :ok_string_containsIgnoringCase_1 a :Pass .
45
- # } .
46
- # Therefore the derived triple above is entailed by the rules and facts.
47
- # ----------------------------------------------------------------------
48
-
49
5
  :ok_string_containsIgnoringCase_1 a :Pass .
50
-
51
- # ----------------------------------------------------------------------
52
- # Proof for derived triple:
53
- # :ok_string_endsWith_1 a :Pass .
54
- # It holds because the following instance of the rule body is provable:
55
- # "hello world!" string:endsWith "orld!" .
56
- # via the schematic forward rule:
57
- # {
58
- # "hello world!" string:endsWith "orld!" .
59
- # } => {
60
- # :ok_string_endsWith_1 a :Pass .
61
- # } .
62
- # Therefore the derived triple above is entailed by the rules and facts.
63
- # ----------------------------------------------------------------------
64
-
65
6
  :ok_string_endsWith_1 a :Pass .
66
-
67
- # ----------------------------------------------------------------------
68
- # Proof for derived triple:
69
- # :ok_string_equalIgnoringCase_1 a :Pass .
70
- # It holds because the following instance of the rule body is provable:
71
- # "hello world!" string:equalIgnoringCase "hELLo wORld!" .
72
- # via the schematic forward rule:
73
- # {
74
- # "hello world!" string:equalIgnoringCase "hELLo wORld!" .
75
- # } => {
76
- # :ok_string_equalIgnoringCase_1 a :Pass .
77
- # } .
78
- # Therefore the derived triple above is entailed by the rules and facts.
79
- # ----------------------------------------------------------------------
80
-
81
7
  :ok_string_equalIgnoringCase_1 a :Pass .
82
-
83
- # ----------------------------------------------------------------------
84
- # Proof for derived triple:
85
- # :ok_string_format_1 a :Pass .
86
- # It holds because the following instance of the rule body is provable:
87
- # ("%s://%s/%s" "https" "w3c.github.io" "N3/spec/") string:format "https://w3c.github.io/N3/spec/" .
88
- # via the schematic forward rule:
89
- # {
90
- # ("%s://%s/%s" "https" "w3c.github.io" "N3/spec/") string:format "https://w3c.github.io/N3/spec/" .
91
- # } => {
92
- # :ok_string_format_1 a :Pass .
93
- # } .
94
- # Therefore the derived triple above is entailed by the rules and facts.
95
- # ----------------------------------------------------------------------
96
-
97
8
  :ok_string_format_1 a :Pass .
98
-
99
- # ----------------------------------------------------------------------
100
- # Proof for derived triple:
101
- # :ok_string_greaterThan_1 a :Pass .
102
- # It holds because the following instance of the rule body is provable:
103
- # "Penguin" string:greaterThan "Cat" .
104
- # via the schematic forward rule:
105
- # {
106
- # "Penguin" string:greaterThan "Cat" .
107
- # } => {
108
- # :ok_string_greaterThan_1 a :Pass .
109
- # } .
110
- # Therefore the derived triple above is entailed by the rules and facts.
111
- # ----------------------------------------------------------------------
112
-
113
9
  :ok_string_greaterThan_1 a :Pass .
114
-
115
- # ----------------------------------------------------------------------
116
- # Proof for derived triple:
117
- # :ok_string_lessThan_1 a :Pass .
118
- # It holds because the following instance of the rule body is provable:
119
- # "Cat" string:lessThan "Penguin" .
120
- # via the schematic forward rule:
121
- # {
122
- # "Cat" string:lessThan "Penguin" .
123
- # } => {
124
- # :ok_string_lessThan_1 a :Pass .
125
- # } .
126
- # Therefore the derived triple above is entailed by the rules and facts.
127
- # ----------------------------------------------------------------------
128
-
129
10
  :ok_string_lessThan_1 a :Pass .
130
-
131
- # ----------------------------------------------------------------------
132
- # Proof for derived triple:
133
- # :ok_string_matches_1 a :Pass .
134
- # It holds because the following instance of the rule body is provable:
135
- # "hello world!" string:matches ".*(l)+o wo.*" .
136
- # via the schematic forward rule:
137
- # {
138
- # "hello world!" string:matches ".*(l)+o wo.*" .
139
- # } => {
140
- # :ok_string_matches_1 a :Pass .
141
- # } .
142
- # Therefore the derived triple above is entailed by the rules and facts.
143
- # ----------------------------------------------------------------------
144
-
145
11
  :ok_string_matches_1 a :Pass .
146
-
147
- # ----------------------------------------------------------------------
148
- # Proof for derived triple:
149
- # :ok_string_notEqualIgnoringCase_1 a :Pass .
150
- # It holds because the following instance of the rule body is provable:
151
- # "hello world!" string:notEqualIgnoringCase "hELLo dunia!" .
152
- # via the schematic forward rule:
153
- # {
154
- # "hello world!" string:notEqualIgnoringCase "hELLo dunia!" .
155
- # } => {
156
- # :ok_string_notEqualIgnoringCase_1 a :Pass .
157
- # } .
158
- # Therefore the derived triple above is entailed by the rules and facts.
159
- # ----------------------------------------------------------------------
160
-
161
12
  :ok_string_notEqualIgnoringCase_1 a :Pass .
162
-
163
- # ----------------------------------------------------------------------
164
- # Proof for derived triple:
165
- # :ok_string_notGreaterThan_1 a :Pass .
166
- # It holds because the following instance of the rule body is provable:
167
- # "Cat" string:notGreaterThan "Penguin" .
168
- # via the schematic forward rule:
169
- # {
170
- # "Cat" string:notGreaterThan "Penguin" .
171
- # } => {
172
- # :ok_string_notGreaterThan_1 a :Pass .
173
- # } .
174
- # Therefore the derived triple above is entailed by the rules and facts.
175
- # ----------------------------------------------------------------------
176
-
177
13
  :ok_string_notGreaterThan_1 a :Pass .
178
-
179
- # ----------------------------------------------------------------------
180
- # Proof for derived triple:
181
- # :ok_string_notLessThan_1 a :Pass .
182
- # It holds because the following instance of the rule body is provable:
183
- # "Penguin" string:notLessThan "Cat" .
184
- # via the schematic forward rule:
185
- # {
186
- # "Penguin" string:notLessThan "Cat" .
187
- # } => {
188
- # :ok_string_notLessThan_1 a :Pass .
189
- # } .
190
- # Therefore the derived triple above is entailed by the rules and facts.
191
- # ----------------------------------------------------------------------
192
-
193
14
  :ok_string_notLessThan_1 a :Pass .
194
-
195
- # ----------------------------------------------------------------------
196
- # Proof for derived triple:
197
- # :ok_string_notMatches_1 a :Pass .
198
- # It holds because the following instance of the rule body is provable:
199
- # "hello world!" string:notMatches ".*(l)+o dunia.*" .
200
- # via the schematic forward rule:
201
- # {
202
- # "hello world!" string:notMatches ".*(l)+o dunia.*" .
203
- # } => {
204
- # :ok_string_notMatches_1 a :Pass .
205
- # } .
206
- # Therefore the derived triple above is entailed by the rules and facts.
207
- # ----------------------------------------------------------------------
208
-
209
15
  :ok_string_notMatches_1 a :Pass .
210
-
211
- # ----------------------------------------------------------------------
212
- # Proof for derived triple:
213
- # :ok_string_replace_1 a :Pass .
214
- # It holds because the following instance of the rule body is provable:
215
- # ("fofof bar" "of" "baz") string:replace "fbazbaz bar" .
216
- # via the schematic forward rule:
217
- # {
218
- # ("fofof bar" "of" "baz") string:replace "fbazbaz bar" .
219
- # } => {
220
- # :ok_string_replace_1 a :Pass .
221
- # } .
222
- # Therefore the derived triple above is entailed by the rules and facts.
223
- # ----------------------------------------------------------------------
224
-
225
16
  :ok_string_replace_1 a :Pass .
226
-
227
- # ----------------------------------------------------------------------
228
- # Proof for derived triple:
229
- # :ok_string_scrape_1 a :Pass .
230
- # It holds because the following instance of the rule body is provable:
231
- # ("id=abc&x=123&y=zzz" "x=([0-9]+)") string:scrape "123" .
232
- # via the schematic forward rule:
233
- # {
234
- # ("id=abc&x=123&y=zzz" "x=([0-9]+)") string:scrape "123" .
235
- # } => {
236
- # :ok_string_scrape_1 a :Pass .
237
- # } .
238
- # Therefore the derived triple above is entailed by the rules and facts.
239
- # ----------------------------------------------------------------------
240
-
241
17
  :ok_string_scrape_1 a :Pass .
242
-
243
- # ----------------------------------------------------------------------
244
- # Proof for derived triple:
245
- # :ok_string_startsWith_1 a :Pass .
246
- # It holds because the following instance of the rule body is provable:
247
- # "hello world!" string:startsWith "hello" .
248
- # via the schematic forward rule:
249
- # {
250
- # "hello world!" string:startsWith "hello" .
251
- # } => {
252
- # :ok_string_startsWith_1 a :Pass .
253
- # } .
254
- # Therefore the derived triple above is entailed by the rules and facts.
255
- # ----------------------------------------------------------------------
256
-
257
18
  :ok_string_startsWith_1 a :Pass .
258
-