Skip to content

Commit

Permalink
Revert changes to system property inverses
Browse files Browse the repository at this point in the history
  • Loading branch information
glguy committed Jan 12, 2021
1 parent 404e3e7 commit b514352
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion RACK-Ontology/OwlModels/GeneratePropInfoCSV.owl
@@ -1,7 +1,7 @@
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:Ag="http://arcos.rack/AGENTS#"
xmlns:builtinfunctions="http://sadl.org/builtinfunctions#"
xmlns:AGENTS="http://arcos.rack/AGENTS#"
xmlns:CONFIDENCE="http://arcos.rack/CONFIDENCE#"
xmlns:Pr="http://arcos.rack/PROCESS#"
xmlns:sadlimplicitmodel="http://sadl.org/sadlimplicitmodel#"
Expand Down
8 changes: 3 additions & 5 deletions RACK-Ontology/OwlModels/SYSTEM.owl
Expand Up @@ -90,9 +90,7 @@
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="source">
<rdfs:subPropertyOf rdf:resource="PROV-S#wasImpactedBy"/>
<owl:inverseOf>
<owl:ObjectProperty rdf:ID="destination"/>
</owl:inverseOf>
<owl:inverseOf rdf:resource="#provides"/>
<rdfs:comment xml:lang="en">SYSTEM that provides what the INTERFACE offers</rdfs:comment>
<rdfs:range rdf:resource="#SYSTEM"/>
<rdfs:domain rdf:resource="#INTERFACE"/>
Expand Down Expand Up @@ -124,9 +122,9 @@
<rdfs:range rdf:resource="PROV-S#ACTIVITY"/>
<rdfs:domain rdf:resource="#INTERFACE"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#destination">
<owl:ObjectProperty rdf:ID="destination">
<rdfs:subPropertyOf rdf:resource="PROV-S#wasImpactedBy"/>
<owl:inverseOf rdf:resource="#source"/>
<owl:inverseOf rdf:resource="#requires"/>
<rdfs:comment xml:lang="en">SYSTEM that requires what the INTERFACE offers</rdfs:comment>
<rdfs:range rdf:resource="#SYSTEM"/>
<rdfs:domain rdf:resource="#INTERFACE"/>
Expand Down
4 changes: 2 additions & 2 deletions RACK-Ontology/ontology/SYSTEM.sadl
Expand Up @@ -46,11 +46,11 @@ INTERFACE
commodity describes INTERFACE with at most 1 value.

source (note "SYSTEM that provides what the INTERFACE offers") describes INTERFACE with values of type SYSTEM.
source is the inverse of destination.
source is the inverse of provides.
source is a type of wasImpactedBy.

destination (note "SYSTEM that requires what the INTERFACE offers") describes INTERFACE with values of type SYSTEM.
destination is the inverse of source.
destination is the inverse of requires.
destination is a type of wasImpactedBy.

identifiedBy (note "ACTIVITY out of which this INTERFACE was identified") describes INTERFACE with values of type ACTIVITY.
Expand Down

0 comments on commit b514352

Please sign in to comment.