eyereasoner 5.9.2 → 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 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