eyeling 1.8.1 → 1.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -2
- package/eyeling.js +0 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -117,7 +117,6 @@ Options:
|
|
|
117
117
|
-a, --ast Print parsed AST as JSON and exit.
|
|
118
118
|
-e, --enforce-https Rewrite http:// IRIs to https:// for log dereferencing builtins.
|
|
119
119
|
-h, --help Show this help and exit.
|
|
120
|
-
-n, --no-proof-comments Disable proof explanations (default).
|
|
121
120
|
-p, --proof-comments Enable proof explanations.
|
|
122
121
|
-r, --strings Print log:outputString strings (ordered by key) instead of N3 output.
|
|
123
122
|
-s, --super-restricted Disable all builtins except => and <=.
|
|
@@ -136,7 +135,7 @@ By default, `eyeling`:
|
|
|
136
135
|
|
|
137
136
|
For each newly derived triple, `eyeling` prints:
|
|
138
137
|
|
|
139
|
-
1. a proof-style comment block explaining why the triple holds
|
|
138
|
+
1. a proof-style comment block explaining why the triple holds, and then
|
|
140
139
|
2. the triple itself in N3/Turtle syntax.
|
|
141
140
|
|
|
142
141
|
The proof comments are compact “local justifications” per derived triple (not a single exported global proof tree).
|
package/eyeling.js
CHANGED
|
@@ -7449,7 +7449,6 @@ function main() {
|
|
|
7449
7449
|
` -a, --ast Print parsed AST as JSON and exit.\n` +
|
|
7450
7450
|
` -e, --enforce-https Rewrite http:// IRIs to https:// for log dereferencing builtins.\n` +
|
|
7451
7451
|
` -h, --help Show this help and exit.\n` +
|
|
7452
|
-
` -n, --no-proof-comments Disable proof explanations (default).\n` +
|
|
7453
7452
|
` -p, --proof-comments Enable proof explanations.\n` +
|
|
7454
7453
|
` -r, --strings Print log:outputString strings (ordered by key) instead of N3 output.\n` +
|
|
7455
7454
|
` -s, --super-restricted Disable all builtins except => and <=.\n` +
|
|
@@ -7488,12 +7487,6 @@ function main() {
|
|
|
7488
7487
|
proofCommentsEnabled = true;
|
|
7489
7488
|
}
|
|
7490
7489
|
|
|
7491
|
-
// --no-proof-comments / -n: disable proof explanations (default)
|
|
7492
|
-
// Keep this after --proof-comments so -n wins if both are present.
|
|
7493
|
-
if (argv.includes('--no-proof-comments') || argv.includes('-n')) {
|
|
7494
|
-
proofCommentsEnabled = false;
|
|
7495
|
-
}
|
|
7496
|
-
|
|
7497
7490
|
// --super-restricted / -s: disable all builtins except => / <=
|
|
7498
7491
|
if (argv.includes('--super-restricted') || argv.includes('-s')) {
|
|
7499
7492
|
superRestrictedMode = true;
|