Skip to content

Commit

Permalink
fixing issue with rdfsurfaces in cgs (closed graph semantics)
Browse files Browse the repository at this point in the history
  • Loading branch information
josd committed Oct 10, 2024
1 parent 933dead commit 3baedf8
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
1 change: 1 addition & 0 deletions RELEASE
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
EYE release

v10.24.19 (2024-10-11) fixing issue with rdfsurfaces in cgs (closed graph semantics)
v10.24.18 (2024-10-10) fixing graph:statement for cgs (closed graph semantics)
v10.24.17 (2024-10-09) fixing log:query for bng (blank node graphs)
v10.24.16 (2024-10-07) adding extra ("skolem-genid" "your-genid" args) log:skolem iri
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
10.24.18
10.24.19
3 changes: 2 additions & 1 deletion eye.pl
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
:- catch(use_module(library(process)), _, true).
:- catch(use_module(library(http/http_open)), _, true).

version_info('EYE v10.24.18 (2024-10-10)').
version_info('EYE v10.24.19 (2024-10-11)').

license_info('MIT License

Expand Down Expand Up @@ -12247,6 +12247,7 @@

labelvars(A, B, C, D) :-
var(A),
nonvar(D),
!,
atom_number(E, B),
atomic_list_concat([D, E], A), % failing when A is an attributed variable
Expand Down
Binary file modified eye.zip
Binary file not shown.
6 changes: 3 additions & 3 deletions reasoning/cgs/slide32.trig
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ _:cgs_2 {
}

# query
() log:onNegativeSurface _:cgs_3.
(_:x) log:onNegativeSurface _:cgs_3.

_:cgs_3 {
:Ghent a :HumanCommunity.
_:x a :HumanCommunity.
() log:onNegativeAnswerSurface _:cgs_4.
}

_:cgs_4 {
:Ghent a :HumanCommunity.
_:x a :HumanCommunity.
}
6 changes: 3 additions & 3 deletions reasoning/cgs/water.trig
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,13 @@ _:cgs_8 {
}

# query
() log:onNegativeSurface _:cgs_9.
(_:A) log:onNegativeSurface _:cgs_9.

_:cgs_9 {
:water :is :observable.
_:A :is :observable.
() log:onNegativeAnswerSurface _:cgs_10.
}

_:cgs_10 {
:water :is :observable.
_:A :is :observable.
}

0 comments on commit 3baedf8

Please sign in to comment.