Skip to content

Commit

Permalink
fixing --trig-output
Browse files Browse the repository at this point in the history
  • Loading branch information
josd committed Oct 3, 2024
1 parent b35e5ad commit f0f37d1
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 50 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.24.12 (2024-10-03) fixing --trig-output
v10.24.11 (2024-10-02) improving resolve negative surfaces
v10.24.10 (2024-10-02) reintroducing --trig-output command line switch
v10.24.9 (2024-10-02) fixing rdfsurfaces expressed in trig and running on gsm.n3
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
10.24.11
10.24.12
80 changes: 31 additions & 49 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.24.11 (2024-10-02)').
version_info('EYE v10.24.12 (2024-10-03)').

license_info('MIT License

Expand Down Expand Up @@ -3521,6 +3521,20 @@
tell(Ws),
nb_getval(wn, Wn),
w3,
forall(
retract(keep_ng(NG)),
( nl,
wt(NG),
nl
)
),
forall(
retract(keep_ng(NG)),
( nl,
wt(NG),
nl
)
),
retractall(pfx(_, _)),
retractall(wpfx(_)),
nb_setval(wn, Wn),
Expand All @@ -3535,7 +3549,21 @@
-> tell(Output)
; true
),
w3.
w3,
forall(
retract(keep_ng(NG)),
( nl,
wt(NG),
nl
)
),
forall(
retract(keep_ng(NG)),
( nl,
wt(NG),
nl
)
).

w3 :-
wh,
Expand Down Expand Up @@ -5029,53 +5057,7 @@
-> true
; ( flag('pass-only-new')
-> true
; open_null_stream(Ws),
tell(Ws),
nb_getval(wn, Wn),
w3,
forall(
retract(keep_ng(NG)),
( nl,
wt(NG),
nl
)
),
forall(
retract(keep_ng(NG)),
( nl,
wt(NG),
nl
)
),
retractall(pfx(_, _)),
retractall(wpfx(_)),
nb_setval(wn, Wn),
nb_setval(output_statements, 0),
nb_setval(lemma_cursor, 0),
forall(
apfx(Pfx, Uri),
assertz(pfx(Pfx, Uri))
),
told,
( flag('output', Output)
-> tell(Output)
; true
),
w3,
forall(
retract(keep_ng(NG)),
( nl,
wt(NG),
nl
)
),
forall(
retract(keep_ng(NG)),
( nl,
wt(NG),
nl
)
)
; w4
)
)
; true
Expand Down
Binary file modified eye.zip
Binary file not shown.

0 comments on commit f0f37d1

Please sign in to comment.