Skip to content

Commit

Permalink
fixing issue #76
Browse files Browse the repository at this point in the history
  • Loading branch information
josd committed Mar 1, 2023
1 parent bd05508 commit d5bada7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions RELEASE
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
EYE release

[v3.4.3] fixing issue https://github.com/eyereasoner/eye/issues/76
[v3.4.2] fixing positive surface blogic
[v3.4.1] beautifying the output of --rdf-list-output
[v3.4.0] new command line option --rdf-list-output to output lists as RDF lists
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.4.2
3.4.3
6 changes: 5 additions & 1 deletion 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 v3.4.2 josd').
version_info('EYE v3.4.3 josd').

license_info('MIT License

Expand Down Expand Up @@ -4344,6 +4344,10 @@
),
atomic_list_concat(['<http://eulersharp.sourceforge.net/2003/03swap/prolog#', Y, '>'], Z),
wt0(Z).
wt2(X-Y) :-
!,
atomic_list_concat([X, '-', Y], Z),
wt0(Z).
wt2(X) :-
X =.. [P, S, O],
( atom(P),
Expand Down
Binary file modified eye.zip
Binary file not shown.

0 comments on commit d5bada7

Please sign in to comment.