Skip to content

Commit

Permalink
adding inference fuse for log:negativeTriple
Browse files Browse the repository at this point in the history
  • Loading branch information
josd committed May 31, 2023
1 parent 9817130 commit a360e7f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 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.2 (2023-05-31) adding inference fuse for log:negativeTriple
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
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.1
4.0.2
6 changes: 5 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.0.1 (2023-05-31)').
version_info('EYE v4.0.2 (2023-05-31)').

license_info('MIT License

Expand Down Expand Up @@ -651,6 +651,10 @@
),
'<http://www.w3.org/2000/10/swap/log#onNegativeSurface>'(_, I)
), false, '<>')),
assertz(implies(('<http://www.w3.org/2000/10/swap/log#negativeTriple>'(A, T),
catch(call(T), _, false),
'<http://www.w3.org/2000/10/swap/log#negativeTriple>'(A, T)
), false, '<>')),
% simplify positive surface
assertz(implies(('<http://www.w3.org/2000/10/swap/log#onNegativeSurface>'(V, G),
is_list(V),
Expand Down
Binary file modified eye.zip
Binary file not shown.

0 comments on commit a360e7f

Please sign in to comment.