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
The problem:
Openllet infers the axiom IrreflexiveObjectProperty(:p), which is not entailed by the ontology. I also cross checked using HermiT, which does not infer this axiom.
For reproduction, here is the call from my program using OWL API:
OWLOntologyDocumentSource source = new FileDocumentSource(ontFile, new FunctionalSyntaxDocumentFormat());
OWLOntologyManager manager = OWLManager.createOWLOntologyManager();
ont = manager.loadOntologyFromOntologyDocument(source);
OWLReasoner openllet = OpenlletReasonerFactory.getInstance().createReasoner(ont);
List<InferredAxiomGenerator<? extends OWLAxiom>> gens = new ArrayList<>();
gens.add( new InferredObjectPropertyCharacteristicAxiomGenerator());
InferredOntologyGenerator iog = new InferredOntologyGenerator(openllet, gens);
OWLOntology infOnt = manager.createOntology();
iog.fillOntology(ont.getOWLOntologyManager().getOWLDataFactory(), infOnt);
The text was updated successfully, but these errors were encountered:
I am using Openllet to compute inferred axioms and I discovered an incorrect inference. Here is a minimal example.
The problem:
Openllet infers the axiom
IrreflexiveObjectProperty(:p)
, which is not entailed by the ontology. I also cross checked using HermiT, which does not infer this axiom.For reproduction, here is the call from my program using OWL API:
The text was updated successfully, but these errors were encountered: