Skip to content

Commit

Permalink
passing --no-bnode-relabeling flag to log:conclusion
Browse files Browse the repository at this point in the history
  • Loading branch information
josd committed Oct 20, 2024
1 parent 3ac2ce3 commit 63f4bd7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 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.26.4 (2024-10-20) passing --no-bnode-relabeling flag to log:conclusion
v10.26.3 (2024-10-18) further support for reasoning/n3plus1 (N3 plus increments like RDF 1.1, RDF 1.2, functional terms, ...)
v10.26.2 (2024-10-18) testing reasoning/n3+1
v10.26.1 (2024-10-18) introducing (~ functor args) functional terms
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
10.26.3
10.26.4
8 changes: 6 additions & 2 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.26.3 (2024-10-18)').
version_info('EYE v10.26.4 (2024-10-20)').

license_info('MIT License

Expand Down Expand Up @@ -7263,7 +7263,11 @@
-> Quiet = '--quiet'
; Quiet = ''
),
append([A1, A2, ['--nope', Quiet, Tmp1, '--pass-all', '>', Tmp2]], A4),
( flag('no-bnode-relabeling')
-> Nobnr = '--no-bnode-relabeling'
; Nobnr = ''
),
append([A1, A2, ['--nope', Quiet, Nobnr, Tmp1, '--pass-all', '>', Tmp2]], A4),
findall([G, ' '],
( member(G, A4)
),
Expand Down
Binary file modified eye.zip
Binary file not shown.

0 comments on commit 63f4bd7

Please sign in to comment.