-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* version bump * deal with single child situation * Added more error handling * work in progress * --omit-explanations works * owl-close-world README updated * general documentation updates * release badge added to README * KerML libraries metrics updated * Fixing owl-query error message and fixing owl doc bug --------- Co-authored-by: Maged Elaasar <[email protected]>
- Loading branch information
Showing
36 changed files
with
2,883 additions
and
900 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
subprojects { | ||
group = 'io.opencaesar.owl' | ||
version = '2.8.1' | ||
version = '2.9.0' | ||
|
||
ext.versions = [ | ||
owl: '5.1.17', | ||
|
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
11 changes: 11 additions & 0 deletions
11
owl-close-world/.settings/org.eclipse.buildship.core.prefs
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,2 +1,13 @@ | ||
arguments=--init-script /var/folders/m6/4v5lzqwj2gs928vvxq68jkmh0000gn/T/d146c9752a26f79b52047fb6dc6ed385d064e120494f96f08ca63a317c41f94c.gradle --init-script /var/folders/m6/4v5lzqwj2gs928vvxq68jkmh0000gn/T/52cde0cfcf3e28b8b7510e992210d9614505e0911af0c190bd590d7158574963.gradle | ||
auto.sync=false | ||
build.scans.enabled=false | ||
connection.gradle.distribution=GRADLE_DISTRIBUTION(VERSION(8.1.1)) | ||
connection.project.dir=.. | ||
eclipse.preferences.version=1 | ||
gradle.user.home= | ||
java.home=/Users/sjenkins/.sdkman/candidates/java/17.0.10-tem | ||
jvm.arguments= | ||
offline.mode=false | ||
override.workspace.settings=true | ||
show.console.view=true | ||
show.executions.view=true |
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
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 @@ | ||
digraph g { | ||
node [ shape = "box" color = "gray" ] | ||
edge [ arrowhead = "none" arrowtail = "onormal" dir = "back" color = "gray" ] | ||
|
||
{ rank = same | ||
a1 [ label = <<i>A</i><sub>1</sub>> ] | ||
a2 [ label = <<i>A</i><sub>2</sub>> ] | ||
adots [ label = <<i>A</i><sub>…</sub>> ] | ||
aj [ label = <<i>A</i><sub><i>j</i></sub>> ] | ||
} | ||
|
||
a1 -> a2 -> adots -> aj [ style = "invis" ] | ||
|
||
b [ label = <<i>B</i>> ] | ||
|
||
{ rank = same | ||
d1 [ label = <<i>D</i><sub>1</sub>> ] | ||
d2 [ label = <<i>D</i><sub>2</sub>> ] | ||
ddots [ label = <<i>D</i><sub>…</sub>> ] | ||
dl [ label = <<i>D</i><sub><i>l</i></sub>> ] | ||
} | ||
|
||
d1 -> d2 -> ddots -> dl [ style = "invis" ] | ||
|
||
{ rank = same | ||
e1 [ label = <<i>E</i><sub>1</sub>> ] | ||
e2 [ label = <<i>E</i><sub>2</sub>> ] | ||
edots [ label = <<i>E</i><sub>…</sub>> ] | ||
em [ label = <<i>E</i><sub><i>m</i></sub>> ] | ||
c [ label = <<i>C</i>> ] | ||
} | ||
|
||
e1 -> e2 -> edots -> em -> c [ style = "invis" ] | ||
|
||
a1 -> b | ||
a2 -> b | ||
adots -> b | ||
aj -> b | ||
|
||
b -> c | ||
|
||
b -> e1 | ||
b -> e2 | ||
b -> edots | ||
b -> em | ||
|
||
c -> d1 | ||
c -> d2 | ||
c -> ddots | ||
c -> dl | ||
} |
Oops, something went wrong.