-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #579 from ontodev/562-feature
Add tautologies & structural-tautologies axiom selectors
- Loading branch information
Showing
12 changed files
with
640 additions
and
576 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<?xml version="1.0"?> | ||
<rdf:RDF xmlns="http://www.semanticweb.org/tauber/ontologies/2019/9/untitled-ontology-995#" | ||
xml:base="http://www.semanticweb.org/tauber/ontologies/2019/9/untitled-ontology-995" | ||
xmlns:owl="http://www.w3.org/2002/07/owl#" | ||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | ||
xmlns:xml="http://www.w3.org/XML/1998/namespace" | ||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#" | ||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> | ||
<owl:Ontology rdf:about="http://www.semanticweb.org/tauber/ontologies/2019/9/untitled-ontology-995"/> | ||
|
||
|
||
|
||
<!-- | ||
/////////////////////////////////////////////////////////////////////////////////////// | ||
// | ||
// Classes | ||
// | ||
/////////////////////////////////////////////////////////////////////////////////////// | ||
--> | ||
|
||
|
||
|
||
|
||
<!-- http://robot.obolibrary.org/example/A --> | ||
|
||
<owl:Class rdf:about="http://robot.obolibrary.org/example/A"> | ||
<rdfs:label>A</rdfs:label> | ||
</owl:Class> | ||
|
||
|
||
|
||
<!-- http://robot.obolibrary.org/example/B --> | ||
|
||
<owl:Class rdf:about="http://robot.obolibrary.org/example/B"> | ||
<rdfs:subClassOf rdf:resource="http://robot.obolibrary.org/example/A"/> | ||
<rdfs:label>B</rdfs:label> | ||
</owl:Class> | ||
|
||
|
||
|
||
<!-- http://robot.obolibrary.org/example/C --> | ||
|
||
<owl:Class rdf:about="http://robot.obolibrary.org/example/C"> | ||
<rdfs:label>C</rdfs:label> | ||
</owl:Class> | ||
</rdf:RDF> | ||
|
||
|
||
|
||
<!-- Generated by the OWL API (version 4.5.6) https://github.com/owlcs/owlapi --> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
<?xml version="1.0"?> | ||
<rdf:RDF xmlns="http://www.semanticweb.org/tauber/ontologies/2019/9/untitled-ontology-995#" | ||
xml:base="http://www.semanticweb.org/tauber/ontologies/2019/9/untitled-ontology-995" | ||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | ||
xmlns:owl="http://www.w3.org/2002/07/owl#" | ||
xmlns:xml="http://www.w3.org/XML/1998/namespace" | ||
xmlns:xsd="http://www.w3.org/2001/XMLSchema#" | ||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> | ||
<owl:Ontology rdf:about="http://www.semanticweb.org/tauber/ontologies/2019/9/untitled-ontology-995"/> | ||
|
||
|
||
|
||
<!-- | ||
/////////////////////////////////////////////////////////////////////////////////////// | ||
// | ||
// Classes | ||
// | ||
/////////////////////////////////////////////////////////////////////////////////////// | ||
--> | ||
|
||
|
||
|
||
|
||
<!-- http://robot.obolibrary.org/example/A --> | ||
|
||
<owl:Class rdf:about="http://robot.obolibrary.org/example/A"> | ||
<rdfs:subClassOf rdf:resource="http://robot.obolibrary.org/example/A"/> | ||
<rdfs:label>A</rdfs:label> | ||
</owl:Class> | ||
|
||
|
||
|
||
<!-- http://robot.obolibrary.org/example/B --> | ||
|
||
<owl:Class rdf:about="http://robot.obolibrary.org/example/B"> | ||
<rdfs:subClassOf rdf:resource="http://robot.obolibrary.org/example/A"/> | ||
<rdfs:label>B</rdfs:label> | ||
</owl:Class> | ||
|
||
|
||
|
||
<!-- http://robot.obolibrary.org/example/C --> | ||
|
||
<owl:Class rdf:about="http://robot.obolibrary.org/example/C"> | ||
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> | ||
<rdfs:label>C</rdfs:label> | ||
</owl:Class> | ||
|
||
|
||
|
||
<!-- http://www.w3.org/2002/07/owl#Nothing --> | ||
|
||
<owl:Class rdf:about="http://www.w3.org/2002/07/owl#Nothing"> | ||
<rdfs:subClassOf rdf:resource="http://robot.obolibrary.org/example/B"/> | ||
</owl:Class> | ||
|
||
|
||
|
||
<!-- http://www.w3.org/2002/07/owl#Thing --> | ||
|
||
<owl:Class rdf:about="http://www.w3.org/2002/07/owl#Thing"/> | ||
</rdf:RDF> | ||
|
||
|
||
|
||
<!-- Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi --> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.