Skip to content

Commit

Permalink
owl-tools#55 (#56)
Browse files Browse the repository at this point in the history
* 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
jsjuni and melaasar authored Jul 9, 2024
1 parent bec3edb commit af2bb73
Show file tree
Hide file tree
Showing 36 changed files with 2,883 additions and 900 deletions.
2 changes: 1 addition & 1 deletion build.gradle
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',
Expand Down
11 changes: 11 additions & 0 deletions owl-close-world/.project
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,15 @@
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
</natures>
<filteredResources>
<filter>
<id>1708032663477</id>
<name></name>
<type>30</type>
<matcher>
<id>org.eclipse.core.resources.regexFilterMatcher</id>
<arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
</matcher>
</filter>
</filteredResources>
</projectDescription>
11 changes: 11 additions & 0 deletions owl-close-world/.settings/org.eclipse.buildship.core.prefs
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
447 changes: 404 additions & 43 deletions owl-close-world/README.md

Large diffs are not rendered by default.

163 changes: 0 additions & 163 deletions owl-close-world/bidetail.svg

This file was deleted.

104 changes: 0 additions & 104 deletions owl-close-world/initial.svg

This file was deleted.

51 changes: 51 additions & 0 deletions owl-close-world/resource/graphviz/bidetail.dot
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>&hellip;</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>&hellip;</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>&hellip;</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
}
Loading

0 comments on commit af2bb73

Please sign in to comment.