Check ontology consistency & satisifiability with OWL API 4
问题 I'm trying to check an ontology for its consistency. The ontology includes only descriptions of individuals, the class and semantic rules are described by an imported ontology. I thougt using the isConsistenct method would be the right choice. OWLReasonerFactory reasonerFactory = new StructuralReasonerFactory(); OWLReasoner reasoner = reasonerFactory.createNonBufferingReasoner(mergedOntology); if(reasoner.isConsistent()){ return "Merged ontology PASSED the consistency test"; }else{ return