Skip to content

Commit

Permalink
further fixing graph: and log: built-ins to deal with rdflegacy
Browse files Browse the repository at this point in the history
  • Loading branch information
josd committed Nov 14, 2023
1 parent f885afd commit e2b0466
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
1 change: 1 addition & 0 deletions RELEASE
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
EYE release

v8.6.7 (2023-11-14) further fixing graph: and log: built-ins to deal with rdflegacy
v8.6.6 (2023-11-14) fixing graph: and log: built-ins to deal with rdflegacy
v8.6.5 (2023-11-13) running sdcoding example in rdflegacy
v8.6.4 (2023-11-13) running gps example in rdflegacy
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.6.6
8.6.7
21 changes: 13 additions & 8 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 v8.6.6 (2023-11-14)').
version_info('EYE v8.6.7 (2023-11-14)').

license_info('MIT License

Expand Down Expand Up @@ -6470,7 +6470,8 @@
when(
( nonvar(A)
),
( conjoin(A, B)
( map(getconj, A, Ah),
conjoin(Ah, B)
)
).

Expand Down Expand Up @@ -7004,7 +7005,9 @@
( nonvar(A),
nonvar(B)
),
( forall(A, B)
( getconj(A, Ag),
getconj(B, Bg),
forall(Ag, Bg)
)
).

Expand Down Expand Up @@ -7034,7 +7037,8 @@
when(
( nonvar(A)
),
( reset_gensym,
( map(getconj, A, Ah),
reset_gensym,
tmp_file(Tmp1),
open(Tmp1, write, Ws1, [encoding(utf8)]),
tell(Ws1),
Expand Down Expand Up @@ -7067,9 +7071,9 @@
nl
),
write('{'),
wt('<http://www.w3.org/2000/10/swap/log#ifThenElseIn>'(A, _)),
wt('<http://www.w3.org/2000/10/swap/log#ifThenElseIn>'(Ah, _)),
write('} => {'),
wt('<http://www.w3.org/2000/10/swap/log#ifThenElseIn>'(A, _)),
wt('<http://www.w3.org/2000/10/swap/log#ifThenElseIn>'(Ah, _)),
write('}.'),
nl,
told,
Expand Down Expand Up @@ -7107,7 +7111,7 @@
semantics(Res, L),
conj_list(K, L),
labelvars(K, 0, _),
A = M,
Ah = M,
K = '<http://www.w3.org/2000/10/swap/log#ifThenElseIn>'(M, _),
delete_file(Tmp1),
delete_file(Tmp2),
Expand Down Expand Up @@ -7224,7 +7228,8 @@
).

'<http://www.w3.org/2000/10/swap/log#inferences>'(A, B) :-
'<http://www.w3.org/2000/10/swap/log#conclusion>'(A, C),
getconj(A, Ag),
'<http://www.w3.org/2000/10/swap/log#conclusion>'(Ag, C),
( nonvar(B)
-> getconj(B, Bg),
intersect([Bg, C], M),
Expand Down
Binary file modified eye.zip
Binary file not shown.

0 comments on commit e2b0466

Please sign in to comment.