-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Created profile directories for implementations, updated readmes, add…
…ed no duplicate definition sparql qc
- Loading branch information
Showing
9 changed files
with
22 additions
and
6 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
# Directory Structure | ||
|
||
This directory contains the first-order implementation of Basic Formal Ontology represented in a standard signature, modularized into sub-theories of BFO which are stored as pdf documents. | ||
These files correspond to the versions in src/common-logic and src/prover9 | ||
This directory contains the first-order implementation of Basic Formal Ontology represented in a standard signature, modularized into sub-theories of BFO which are stored as pdf documents. These files correspond to the versions in src/common-logic and src/prover9 | ||
|
||
Release notes are available in the top level directory "release-notes" | ||
Release notes are available in documentation/release-notes. |
File renamed without changes.
File renamed without changes.
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,16 @@ | ||
# Title: | ||
# No Duplicate Definitions | ||
# Constraint Description: | ||
# No two ontology elements may have the exact same definition. | ||
# Severity: | ||
# Error | ||
|
||
PREFIX skos: <http://www.w3.org/2004/02/skos/core#> | ||
|
||
SELECT DISTINCT ?entity ?definition | ||
WHERE { | ||
?entity skos:definition ?definition . | ||
?entity2 skos:definition ?definition . | ||
FILTER (?entity != ?entity2) | ||
FILTER (!isBlank(?entity)) | ||
} |
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
File renamed without changes.
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
File renamed without changes.