File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
OWLSharp/Ontology/Helpers Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ public static List<OWLIndividualExpression> GetDifferentIndividuals(this OWLOnto
112112 if ( ontology != null && idvExpr != null )
113113 {
114114 //We can only enlist explicitly declared different individuals: no other kind
115- //of reasoning is possible, since this relation is protected under OWA behavior!
115+ //of reasoning is possible, since this relation is technically a constraint.
116116 RDFResource idvExprIRI = idvExpr . GetIRI ( ) ;
117117 foreach ( OWLDifferentIndividuals axiom in GetAssertionAxiomsOfType < OWLDifferentIndividuals > ( ontology ) . Where ( ax => ax . IndividualExpressions . Any ( iex => iex . GetIRI ( ) . Equals ( idvExprIRI ) ) ) )
118118 differentIndividuals . AddRange ( axiom . IndividualExpressions ) ;
Original file line number Diff line number Diff line change @@ -226,7 +226,7 @@ public static List<OWLDataProperty> GetDisjointDataProperties(this OWLOntology o
226226 RDFResource dtPropIRI = dataProperty . GetIRI ( ) ;
227227
228228 //We can only enlist explicitly declared disjoint data properties: no other kind
229- //of reasoning is possible, since this relation is protected under OWA behavior!
229+ //of reasoning is possible, since this relation is technically a constraint.
230230 foreach ( OWLDisjointDataProperties axiom in GetDataPropertyAxiomsOfType < OWLDisjointDataProperties > ( ontology ) . Where ( ax => ax . DataProperties . Any ( dp => dp . GetIRI ( ) . Equals ( dtPropIRI ) ) ) )
231231 disjointDataProperties . AddRange ( axiom . DataProperties ) ;
232232
Original file line number Diff line number Diff line change @@ -226,7 +226,7 @@ public static List<OWLObjectPropertyExpression> GetDisjointObjectProperties(this
226226 RDFResource objPropExprIRI = objPropExpr . GetIRI ( ) ;
227227
228228 //We can only enlist explicitly declared disjoint object properties: no other kind
229- //of reasoning is possible, since this relation is protected under OWA behavior!
229+ //of reasoning is possible, since this relation is technically a constraint.
230230 foreach ( OWLDisjointObjectProperties axiom in GetObjectPropertyAxiomsOfType < OWLDisjointObjectProperties > ( ontology ) . Where ( ax => ax . ObjectPropertyExpressions . Any ( dp => dp . GetIRI ( ) . Equals ( objPropExprIRI ) ) ) )
231231 disjointObjPropExprs . AddRange ( axiom . ObjectPropertyExpressions ) ;
232232
You can’t perform that action at this time.
0 commit comments