Skip to content

Commit

Permalink
fixing --pass-only-new for refresh
Browse files Browse the repository at this point in the history
  • Loading branch information
josd committed Sep 30, 2023
1 parent 06473b2 commit a64e3aa
Show file tree
Hide file tree
Showing 5 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.18.3 (2023-09-30) fixing --pass-only-new for refresh
v4.18.2 (2023-09-30) refresh with double negation
v4.18.1 (2023-09-30) supporting disjunction in the conclusion as list of graph terms and is negation when list is empty
v4.18.0 (2023-09-29) supporting lists of graph terms as conclusions
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.18.2
4.18.3
4 changes: 3 additions & 1 deletion 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.18.2 (2023-09-30)').
version_info('EYE v4.18.3 (2023-09-30)').

license_info('MIT License

Expand Down Expand Up @@ -5128,6 +5128,7 @@
; djiti_assertz(Dn),
( flag('pass-only-new'),
Dn \= answer(_, _, _),
\+ (flag(refresh), Dn = '<http://www.w3.org/2000/10/swap/log#implies>'(_, _)),
\+ (flag(rdfsurfaces), Dn = '<http://www.w3.org/2000/10/swap/log#implies>'(_, _)),
\+pass_only_new(Dn)
-> assertz(pass_only_new(Dn))
Expand Down Expand Up @@ -5165,6 +5166,7 @@
; djiti_assertz(Cn),
( flag('pass-only-new'),
Cn \= answer(_, _, _),
\+ (flag(refresh), Cn = '<http://www.w3.org/2000/10/swap/log#implies>'(_, _)),
\+ (flag(rdfsurfaces), Cn = '<http://www.w3.org/2000/10/swap/log#implies>'(_, _)),
\+pass_only_new(Cn)
-> assertz(pass_only_new(Cn))
Expand Down
Binary file modified eye.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion reasoning/blogic/version.n3s.out
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
@prefix log: <http://www.w3.org/2000/10/swap/log#>.

() log:version "EYE v4.18.2 (2023-09-30)".
() log:version "EYE v4.18.3 (2023-09-30)".

0 comments on commit a64e3aa

Please sign in to comment.