You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 8, 2020. It is now read-only.
@@ -120,7 +120,7 @@ Snapshot version are only avalibale via our custom Maven repository located at h
120
120
## Usage
121
121
Besides using the Inference API in your application code, we also provide a command line interface with various options that allow for a convenient way to use the core reasoning algorithms:
122
122
```
123
-
RDFGraphMaterializer 0.4.0
123
+
RDFGraphMaterializer 0.6.0
124
124
Usage: RDFGraphMaterializer [options]
125
125
126
126
-i, --input <path1>,<path2>,...
@@ -166,6 +166,10 @@ will compute the RDFS materialization on the data contained in `test.nt` and wri
166
166
Currently, the following reasoning profiles are supported:
167
167
168
168
##### RDFS
169
+
The RDFS reasoner can be configured to work at two different compliance levels:
170
+
171
+
###### RDFS (Default)
172
+
This implements all of the [RDFS closure rules](https://www.w3.org/TR/rdf11-mt/#patterns-of-rdfs-entailment-informative) with the exception of bNode entailments and datatypes (**rdfD 1**). RDFS axiomatic triples are also omitted. This is an expensive mode because all statements in the data graph need to be checked for possible use of container membership properties. It also generates type assertions for all resources and properties mentioned in the data (**rdf1**, **rdfs4a**, **rdfs4b**).
169
173
170
174
###### RDFS Simple
171
175
@@ -175,6 +179,7 @@ information that only serves to reason about the structure of the language
175
179
itself and not about the data it describes.
176
180
It is composed of the reserved vocabulary
177
181
`rdfs:subClassOf`, `rdfs:subPropertyOf`, `rdf:type`, `rdfs:domain` and `rdfs:range`.
182
+
This implements just the transitive closure of `rdfs:subClassOf` and `rdfs:subPropertyOf` relations, the `rdfs:domain` and `rdfs:range` entailments and the implications of `rdfs:subPropertyOf` and `rdfs:subClassOf` in combination with instance data. It omits all of the axiomatic triples. This is probably the most useful mode but it is a less complete implementation of the standard.
0 commit comments