Skip to content

Commit 0e25830

Browse files
author
Marco De Salvo
committed
Clarify OWA comments
1 parent 7d63023 commit 0e25830

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

OWLSharp/Ontology/Helpers/OWLAssertionAxiomHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

OWLSharp/Ontology/Helpers/OWLDataPropertyAxiomHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

OWLSharp/Ontology/Helpers/OWLObjectPropertyAxiomHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)