eyeleng 1.0.13 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -5
- package/dist/browser/eyeleng.browser.js +686 -14
- package/examples/fibonacci.srl +89 -30009
- package/examples/output/bayes-diagnosis.trig +0 -4
- package/examples/output/bmi.trig +0 -2
- package/examples/output/dijkstra.trig +0 -8
- package/examples/output/fibonacci.trig +2 -19996
- package/examples/output/hanoi.trig +0 -10
- package/examples/output/spec-2-5-assignment-with-negation.trig +0 -1
- package/examples/output/sudoku.trig +0 -1
- package/examples/output/turing.trig +0 -5
- package/eyeleng.js +735 -24
- package/package.json +1 -1
- package/reports/w3c-shacl12-rules-earl.ttl +89 -89
- package/src/api.js +4 -1
- package/src/backward.js +535 -0
- package/src/cli.js +49 -10
- package/src/engine.js +69 -5
- package/src/query.js +72 -7
- package/src/store.js +2 -0
- package/test/api.test.js +181 -1
- package/test/cli.test.js +13 -2
- package/test/perf-baseline.json +7 -7
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
:AllergicRhinitis :rank "low" .
|
|
2
|
-
:AllergicRhinitis :unnormalizedScore 7.500000000000003e-7 .
|
|
3
2
|
:BacterialPneumonia :rank "low" .
|
|
4
|
-
:BacterialPneumonia :unnormalizedScore 0.00004787999999999999 .
|
|
5
3
|
:COVID19 :rank "high" .
|
|
6
4
|
:COVID19 :screenedIn true .
|
|
7
|
-
:COVID19 :unnormalizedScore 0.0015470000000000002 .
|
|
8
5
|
:Influenza :rank "low" .
|
|
9
|
-
:Influenza :unnormalizedScore 0.00004800000000000001 .
|
package/examples/output/bmi.trig
CHANGED
|
@@ -1,14 +1,6 @@
|
|
|
1
1
|
:ab :best true .
|
|
2
2
|
:abc :best true .
|
|
3
|
-
:abc :cost 3 .
|
|
4
|
-
:abc a :Path .
|
|
5
3
|
:abcd :best true .
|
|
6
|
-
:abcd :cost 5 .
|
|
7
|
-
:abcd a :Path .
|
|
8
|
-
:abd :cost 9 .
|
|
9
4
|
:abd :dominated true .
|
|
10
|
-
:abd a :Path .
|
|
11
5
|
:ac :dominated true .
|
|
12
|
-
:acd :cost 7 .
|
|
13
6
|
:acd :dominated true .
|
|
14
|
-
:acd a :Path .
|