eyereasoner 5.9.1 → 6.0.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.
- package/README.md +0 -4
- package/dist/eye.d.ts +1 -1
- package/dist/eye.js +1 -1
- package/dist/transformers.d.ts +1 -8
- package/dist/transformers.js +2 -9
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -66,7 +66,6 @@ const data = `
|
|
|
66
66
|
|
|
67
67
|
const result = await n3reasoner(data, undefined, {
|
|
68
68
|
output: 'derivations',
|
|
69
|
-
blogic: false,
|
|
70
69
|
outputType: 'string'
|
|
71
70
|
});
|
|
72
71
|
```
|
|
@@ -77,9 +76,6 @@ The `options` parameter can be used to configure the reasoning process. The foll
|
|
|
77
76
|
- `deductive_closure`: output deductive closure, a.k.a `--pass`
|
|
78
77
|
- `deductive_closure_plus_rules`: output deductive closure plus rules, a.k.a `--pass-all`
|
|
79
78
|
- `grounded_deductive_closure_plus_rules`: ground the rules and output deductive closure plus rules, a.k.a `--pass-all-ground`
|
|
80
|
-
- `blogic`: Whether to use the blogic or not. Used to support [RDF surfaces](https://w3c-cg.github.io/rdfsurfaces/).
|
|
81
|
-
- `true`: use blogic
|
|
82
|
-
- `false`: do not use blogic (default)
|
|
83
79
|
- `outputType`: The type of output (if different from the input)
|
|
84
80
|
- `string`: output as string
|
|
85
81
|
- `quads`: output as array of RDF/JS Quads
|