On Fri, Sep 27, 2013 at 3:02 PM, Bruno <[email protected]> wrote: > I want to use Jena+Pellet to create a inferred version of my ontology. > > Trying to use it, what I get is a version that has more infererred facts > than I want. For example, the reasoning adds classes Nothing, anyURI, > base64Binary, BultinAtom, etc. > > I don't want to get that kind of inferences from the reasoning. I just want > the basic features of OWL and SWRL. How can I configure Jena to do it?
Can you provide some sample input and the output that you're getting? Also the code that you're using to produce it? The class owl:Nothing _is_ a part of OWL, and you can expect to see it in output. A more typical usage is connecting a reasoner with a model, and then asking things of the model, rather than trying to write out all possible inferences. There are some API features for writing out just the kinds of inferences that you're interested it, but it will be easier to demonstrate them if we can see what you've already done. //JT -- Joshua Taylor, http://www.cs.rpi.edu/~tayloj/
