0
votes
2answers
26 views

catch all the inferences generated by pellet reasoner

I have a problem when executing the reasoner in my application, I can't capture the inferences generated by the reasoner. It's normally performed, the printClassTree shows me that inferences were ...
0
votes
1answer
220 views

How to get an individual which match an Objectproperty with Jena?

Let consider the following ontology, where PERSON, NAME, SURNAME and IDENTIFICATION are classes. NAME and SURNAME are subclass of IDENTIFICATION. hasSurname and hasName are functional ObjectProperty. ...
0
votes
1answer
61 views

Pellet-2.3 packages missing?

I've downloaded and install Pellet-2.3 from here (containing Pellet and Jena and many others plug-ins). Within an Eclipse Jena project It is impossible for me to acces following packages. import ...
0
votes
1answer
139 views

Trouble while loading an ontology with Pellet API

I want to use Jena Pellet API as Reasoner for infering new data in an owl file. I've downloaded the jar file pellet.jar and I've attached It to my Eclipse java project. However I'm still getting this ...
1
vote
1answer
128 views

Can a semantic web Ontology have the same expressivity but a different profile?

I'm analyzing some ontologies with the pellet reasoner, but I'm getting some strange results. When I perform the "pellet info" method on an ontology, and compare the OWL Profile to the DL ...
4
votes
1answer
834 views

In Semantic Web, are OWL EL, RL, QL all instances of DL? What is the difference? More inside

I'm using the pellet reasoner on a number of ontologies and have run the info method on a list of IRIs (in this case URLs). The two metrics that interest me are the DL Expressivity and OWL Profile. ...
1
vote
1answer
411 views

Cannot resolved class Reasoner in Pellet/OwlApi

I'm start to use Pellet to create a reasoner with my OWLApi application. As in the examples, I start with this code: Reasoner reasoner = new Reasoner( manager ); but Eclipse give me this error on ...
3
votes
1answer
971 views

Property chain reasoning over rdf:type

I am trying to get Pellet to propagate properties from classes down to the individuals belonging to those classes. For example, if I have Class A with Property X, and Individual B with rdf:type=Class ...
2
votes
3answers
305 views

How can I do offline reasoning with Pellet?

I have an OWL ontology and I am using Pellet to do reasoning over it. Like most ontologies it starts by including various standard ontologies: <rdf:RDF ...