I have two questions:
- What is the reasoner of OWL API? Is it Hermit? So when I have:
OWLReasonerFactory reasoner_factory = new ReasonerFactory();
OWLReasoner reasoner = reasoner_factory.createReasoner(ontology);
Which reasoner is called?
- When I perform materialization I also get for any individuals a, b appearing the the ABox the assertion:
owl:topObjectProperty(a,b)
, which is true, but also redundant, and explodes the size of the KB.
So how can I prevent this from happening?
The method I used is as follows:
public static Ontology materialization(Ontology ontology, File inferredOntologyFile) throws OWLOntologyStorageException, IOException, OWLOntologyCreationException {
Configuration config=new Configuration();
OntologyManager manager= OntManagers.createManager();
Ontology inf_ontology = manager.loadOntologyFromOntologyDocument(inferredOntologyFile);
OutputStream outputStream=new FileOutputStream(inferredOntologyFile);
OWLDataFactory data_factory = ontology.getOWLOntologyManager().getOWLDataFactory();
OWLReasonerFactory reasoner_factory = new ReasonerFactory();
OWLReasoner reasoner = reasoner_factory.createReasoner(ontology);
if (reasoner.isConsistent() == false) {
System.out.println("INCONSISTENT ONTOLOGY!");
}
InferredOntologyGenerator inference = new InferredOntologyGenerator(reasoner);
inference.fillOntology(data_factory, ontology);
manager.saveOntology(ontology, new NTriplesDocumentFormat(), outputStream);
return ontology;
}
owlapi-distribution version: 5.1.14 Hermit version: 1.3.8.510
Also a very simple test ontology after materialization is here: https://drive.google.com/file/d/1EKm8uD1zuMfIjstCAZMperZFFv4-kCtD/view?usp=sharing
or you can see it below:
<http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Ontology> .
<http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9#c> <http://www.w3.org/2002/07/owl#topObjectProperty> <http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9#c> .
<http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9#c> <http://www.w3.org/2002/07/owl#topObjectProperty> <http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9#b> .
<http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9#c> <http://www.w3.org/2002/07/owl#topObjectProperty> <http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9#a> .
<http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9#c> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9#c> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Thing> .
<http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9#r> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/2002/07/owl#topObjectProperty> .
<http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9#r> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9#a> <http://www.w3.org/2002/07/owl#topObjectProperty> <http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9#b> .
<http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9#a> <http://www.w3.org/2002/07/owl#topObjectProperty> <http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9#a> .
<http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9#a> <http://www.w3.org/2002/07/owl#topObjectProperty> <http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9#c> .
<http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9#a> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9#a> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Thing> .
<http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9#A> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/2002/07/owl#Thing> .
<http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9#A> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9#b> <http://www.w3.org/2002/07/owl#topObjectProperty> <http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9#c> .
<http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9#b> <http://www.w3.org/2002/07/owl#topObjectProperty> <http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9#b> .
<http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9#b> <http://www.w3.org/2002/07/owl#topObjectProperty> <http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9#a> .
<http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9#b> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .
<http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9#b> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Thing> .
<http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9#B> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/2002/07/owl#Thing> .
<http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9#B> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://www.w3.org/2002/07/owl#topObjectProperty> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ReflexiveProperty> .
<http://www.w3.org/2002/07/owl#topObjectProperty> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#SymmetricProperty> .
<http://www.w3.org/2002/07/owl#topObjectProperty> <http://www.w3.org/2002/07/owl#inverseOf> <http://www.w3.org/2002/07/owl#topObjectProperty> .
<http://www.w3.org/2002/07/owl#topObjectProperty> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9#q> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/2002/07/owl#topObjectProperty> .
<http://www.semanticweb.org/savtr/ontologies/2023/6/untitled-ontology-9#q> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .