Skip to content

Commit

Permalink
replace log:onNegativeQuestionSurface with log:onNegativeSurface
Browse files Browse the repository at this point in the history
  • Loading branch information
josd committed Aug 8, 2024
1 parent 3b01103 commit 5b6ff93
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 19 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.18.0 (2024-08-08) replace log:onNegativeQuestionSurface with log:onNegativeSurface
v10.17.3 (2024-08-07) removing halting counter for rdfsurfaces
v10.17.2 (2024-08-01) extending (| :f :a :b |) log:rawType log:FunctionalTerm.
v10.17.1 (2024-07-31) fixing functional terms to (| functor args |)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
10.17.3
10.18.0
27 changes: 9 additions & 18 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.17.3 (2024-08-07)').
version_info('EYE v10.18.0 (2024-08-08)').

license_info('MIT License

Expand Down Expand Up @@ -477,7 +477,6 @@
is_graph(G),
conj_list(G, Gl),
\+member('<http://www.w3.org/2000/10/swap/log#onNegativeSurface>'(_, _), Gl),
\+member('<http://www.w3.org/2000/10/swap/log#onNegativeQuestionSurface>'(_, _), Gl),
\+member('<http://www.w3.org/2000/10/swap/log#onNegativeAnswerSurface>'(_, _), Gl),
makevars([Vl, Gl], [Vv, Gv], beta(Vl)),
select(F, Gv, Gr),
Expand Down Expand Up @@ -516,7 +515,6 @@
is_graph(G),
conj_list(G, L),
list_to_set(L, B),
\+member('<http://www.w3.org/2000/10/swap/log#onNegativeQuestionSurface>'(_, _), B),
\+member('<http://www.w3.org/2000/10/swap/log#onNegativeAnswerSurface>'(_, _), B),
findall(1,
( member('<http://www.w3.org/2000/10/swap/log#onNegativeSurface>'(_, _), B)
Expand All @@ -535,7 +533,6 @@
is_graph(F),
conj_list(F, K),
list_to_set(K, N),
\+member('<http://www.w3.org/2000/10/swap/log#onNegativeQuestionSurface>'(_, _), N),
\+member('<http://www.w3.org/2000/10/swap/log#onNegativeAnswerSurface>'(_, _), N),
length(N, 2),
makevars(N, J, beta(Wl)),
Expand Down Expand Up @@ -565,7 +562,6 @@
is_graph(G),
conj_list(G, L),
list_to_set(L, B),
\+member('<http://www.w3.org/2000/10/swap/log#onNegativeQuestionSurface>'(_, _), B),
\+member('<http://www.w3.org/2000/10/swap/log#onNegativeAnswerSurface>'(_, _), B),
select('<http://www.w3.org/2000/10/swap/log#onNegativeSurface>'(X, H), B, K),
( H \= '<http://www.w3.org/2000/10/swap/log#onNegativeSurface>'([], _)
Expand All @@ -588,7 +584,6 @@
conj_list(G, L),
list_to_set(L, B),
\+member('<http://www.w3.org/2000/10/swap/log#onNegativeSurface>'(_, _), B),
\+member('<http://www.w3.org/2000/10/swap/log#onNegativeQuestionSurface>'(_, _), B),
\+member('<http://www.w3.org/2000/10/swap/log#onNegativeAnswerSurface>'(_, _), B),
\+member(exopred(_, _, _), B),
( length(B, O),
Expand Down Expand Up @@ -621,17 +616,14 @@
is_graph(G),
conj_list(G, L),
list_to_set(L, B),
( select('<http://www.w3.org/2000/10/swap/log#onNegativeQuestionSurface>'([], T), B, K)
; select('<http://www.w3.org/2000/10/swap/log#onNegativeSurface>'([], T), B, K),
conj_list(T, [T]),
\+member('<http://www.w3.org/2000/10/swap/log#onNegativeSurface>'(_, _), K),
\+member('<http://www.w3.org/2000/10/swap/log#onNegativeQuestionSurface>'(_, _), K),
\+member('<http://www.w3.org/2000/10/swap/log#onNegativeAnswerSurface>'(_, _), K),
findvars(T, Tv, beta),
findvars(K, Kv, beta),
member(Tm, Tv),
\+member(Tm, Kv)
),
select('<http://www.w3.org/2000/10/swap/log#onNegativeSurface>'([], T), B, K),
conj_list(T, [T]),
\+member('<http://www.w3.org/2000/10/swap/log#onNegativeSurface>'(_, _), K),
\+member('<http://www.w3.org/2000/10/swap/log#onNegativeAnswerSurface>'(_, _), K),
findvars(T, Tv, beta),
findvars(K, Kv, beta),
member(Tm, Tv),
\+member(Tm, Kv),
conj_list(R, K),
conjify(R, S),
find_graffiti([R], D),
Expand Down Expand Up @@ -725,7 +717,6 @@
is_list(Vl),
is_graph(G),
conj_list(G, L),
\+member('<http://www.w3.org/2000/10/swap/log#onNegativeQuestionSurface>'(_, _), L),
makevars(G, H, beta(Vl)),
( H = '<http://www.w3.org/2000/10/swap/log#onNegativeSurface>'(_, false),
J = true
Expand Down
Binary file modified eye.zip
Binary file not shown.

0 comments on commit 5b6ff93

Please sign in to comment.