Skip to content

Commit

Permalink
further fixing issue #108
Browse files Browse the repository at this point in the history
  • Loading branch information
josd committed Sep 3, 2024
1 parent 8176540 commit d2c61d6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 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.20.3 (2024-09-04) further fixing issue https://github.com/eyereasoner/eye/issues/108
v10.20.2 (2024-09-04) further fixing issue https://github.com/eyereasoner/eye/issues/115
v10.20.1 (2024-09-03) fixing log:callWithCut built-in
v10.20.0 (2024-09-03) integrating lingua into eye
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
10.20.2
10.20.3
12 changes: 7 additions & 5 deletions 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.20.2 (2024-09-04)').
version_info('EYE v10.20.3 (2024-09-04)').

license_info('MIT License

Expand Down Expand Up @@ -8197,8 +8197,9 @@
when(
( ground(X)
),
( findall(A,
( member(B, X),
( getlist(X, C),
findall(A,
( member(B, C),
getnumber(B, A)
),
Z
Expand Down Expand Up @@ -8227,8 +8228,9 @@
when(
( ground(X)
),
( findall(A,
( member(B, X),
( getlist(X, C),
findall(A,
( member(B, C),
getnumber(B, A)
),
Z
Expand Down
Binary file modified eye.zip
Binary file not shown.

0 comments on commit d2c61d6

Please sign in to comment.