Skip to content

Commit

Permalink
improving the output of log:trace (obs from William Van Woensel)
Browse files Browse the repository at this point in the history
  • Loading branch information
josd committed Jan 20, 2023
1 parent 8337573 commit b5475dd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
1 change: 1 addition & 0 deletions RELEASE
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
EYE release

[v2.3.1] improving the output of log:trace (obs from William Van Woensel)
[v2.3.0] loading library(dif) so that dif/2 can be used in n3p (obs from Patrick Hochstenbach)
[v2.2.0] adding --no-models option to have no model generation for blogic
[v2.1.1] finetuning blogic model handling
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.3.0
2.3.1
15 changes: 6 additions & 9 deletions eye.pl
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
:- use_module(library(semweb/turtle)).
:- catch(use_module(library(http/http_open)), _, true).

version_info('EYE v2.3.0 josd').
version_info('EYE v2.3.1 josd').

license_info('MIT License

Expand Down Expand Up @@ -5925,14 +5925,11 @@
'<http://eulersharp.sourceforge.net/2003/03swap/log-rules#trace>'(X, Y) :-
\+flag(restricted),
tell(user_error),
write('TRACE '),
( ( var(X)
; findvar(X, beta)
)
-> copy_term_nat(Y, Z),
wg(Z)
; writeq(Y)
),
copy_term_nat(X, U),
wg(U),
write(' TRACE '),
copy_term_nat(Y, V),
wg(V),
nl,
told,
( flag('output', Output)
Expand Down
Binary file modified eye.zip
Binary file not shown.

0 comments on commit b5475dd

Please sign in to comment.