eyelang 0.1.8 → 0.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eyelang",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "A small Prolog-syntax-subset logic programming language for rules, goals, answers, and proofs.",
5
5
  "type": "module",
6
6
  "main": "./index.js",
@@ -16,26 +16,36 @@ const expectedProofDir = path.join(examplesDir, 'proof');
16
16
  const fixedExampleDate = '2026-05-30';
17
17
 
18
18
  const proofExamples = [
19
+ 'access-control-policy.pl',
19
20
  'age.pl',
20
21
  'aliases-and-namespaces.pl',
21
22
  'ancestor.pl',
22
23
  'animal.pl',
23
24
  'annotation.pl',
24
25
  'backward.pl',
26
+ 'bayes-diagnosis.pl',
25
27
  'cat-koko.pl',
28
+ 'context-association.pl',
26
29
  'data-negotiation.pl',
30
+ 'deontic-logic.pl',
31
+ 'derived-backward-rule.pl',
27
32
  'derived-rule.pl',
28
33
  'dog.pl',
29
34
  'electrical-rc-filter.pl',
30
35
  'existential-rule.pl',
31
36
  'floating-point.pl',
32
37
  'good-cobbler.pl',
38
+ 'graph-reachability.pl',
39
+ 'greatest-lower-bound-uniqueness.pl',
33
40
  'group-inverse-uniqueness.pl',
34
41
  'list-collection.pl',
35
42
  'proof-contrapositive.pl',
43
+ 'reusable-builtins.pl',
36
44
  'socket-age.pl',
37
45
  'socket-family.pl',
38
46
  'socrates.pl',
47
+ 'term-tools.pl',
48
+ 'witch.pl',
39
49
  ];
40
50
 
41
51
  export function runExamples(reporter = new TestReporter()) {