Skip to content

Commit

Permalink
fixing issue with output of true predicate (obs from Patrick Hochsten…
Browse files Browse the repository at this point in the history
…bach)
  • Loading branch information
josd committed May 31, 2023
1 parent 2c229bb commit 9817130
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions RELEASE
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
EYE release

v4.0.1 (2023-05-31) fixing issue with output of true predicate (obs from Patrick Hochstenbach)
v4.0.0 (2023-05-31) removing --query-answer option and implementing --blogic using rdfsurfaces/0
v3.28.1 (2023-05-30) Integrated Surfaces in EYE
v3.28.0 (2023-05-27) using log:negativeTriple built-in (instead of log:onQuerySurface) in blogic odd level surfaces
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.0
4.0.1
6 changes: 4 additions & 2 deletions eye.pl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
:- use_module(library(pcre)).
:- catch(use_module(library(http/http_open)), _, true).

version_info('EYE v4.0.0 (2023-05-31)').
version_info('EYE v4.0.1 (2023-05-31)').

license_info('MIT License

Expand Down Expand Up @@ -4314,7 +4314,9 @@
\+ (sub_atom(P, 0, 1, _, '<'), sub_atom(P, _, 1, 0, '>')),
\+sub_atom(P, 0, _, _, avar),
\+sub_atom(P, 0, _, _, allv),
\+sub_atom(P, 0, _, _, some)
\+sub_atom(P, 0, _, _, some),
P \= true,
P \= false
-> write('"'),
writeq(X),
write('"')
Expand Down
Binary file modified eye.zip
Binary file not shown.

0 comments on commit 9817130

Please sign in to comment.