Skip to content

Commit

Permalink
fixing log:includes and log:notIncludes (obs from Dörthe Arndt)
Browse files Browse the repository at this point in the history
  • Loading branch information
josd committed Nov 27, 2024
1 parent 51aed97 commit 8342e43
Show file tree
Hide file tree
Showing 4 changed files with 18 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

v10.30.10 (2024-11-27) fixing log:includes and log:notIncludes (obs from Dörthe Arndt)
v10.30.9 (2024-11-27) slight output speed improvement
v10.30.8 (2024-11-26) fixing opts/2
v10.30.7 (2024-11-26) changing --proof-explanation to --ether (explain the reasoning)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
10.30.9
10.30.10
24 changes: 16 additions & 8 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.30.9 (2024-11-27)').
version_info('EYE v10.30.10 (2024-11-27)').

license_info('MIT License

Expand Down Expand Up @@ -259,10 +259,15 @@
Argil
),
append(Argil, Argi),
version_info(Version),
( member('--version', Argus)
-> format(user_error, '~w~n', [Version]),
throw(halt(0))
; true
),
( member('--quiet', Argus)
-> true
; format(user_error, 'eye~@~@~n', [w0(Argi), w1(Argus)]),
version_info(Version),
format(user_error, '~w~n', [Version]),
( current_prolog_flag(version_git, PVersion)
-> true
Expand Down Expand Up @@ -840,9 +845,6 @@
opts(['--tactic', Tactic|_], _) :-
!,
throw(not_supported_tactic(Tactic)).
opts(['--version'|_], _) :-
!,
throw(halt(0)).
opts(['--warn'|Argus], Args) :-
!,
retractall(flag(warn)),
Expand Down Expand Up @@ -7663,7 +7665,8 @@
nonvar(Y)
),
( X \= [_, _],
conj_list(X, A),
makevars(X, Z, gamma),
conj_list(Z, A),
conj_list(Y, B),
includes(A, B)
)
Expand Down Expand Up @@ -7792,7 +7795,8 @@
nonvar(Y)
),
( X \= [_, _],
conj_list(X, A),
makevars(X, Z, gamma),
conj_list(Z, A),
conj_list(Y, B),
\+includes(A, B)
)
Expand Down Expand Up @@ -12647,6 +12651,9 @@
; sub_atom(A, 0, _, _, some)
; sub_atom(A, 0, _, _, '_:')
).
findvar(A, gamma) :-
!,
sub_atom(A, 0, _, _, some).
findvar(A, delta) :-
!,
( sub_atom(A, _, 19, _, '/.well-known/genid/')
Expand Down Expand Up @@ -13570,7 +13577,8 @@
mf(A) :-
forall(
catch(A, _, fail),
( portray_clause(user_error, A),
( write(user_error, '*** '),
portray_clause(user_error, A),
cnt(mf)
)
),
Expand Down
Binary file modified eye.zip
Binary file not shown.

0 comments on commit 8342e43

Please sign in to comment.