Merge branch 'master' of /yap-6.3

Conflicts:
	C/c_interface.c
This commit is contained in:
Vitor Santos Costa
2011-02-03 11:33:50 +00:00
12 changed files with 2922 additions and 51 deletions

View File

@@ -95,6 +95,7 @@ max(Skel,Arg,Goal) :-
arg(Arg, Skel, A0),
arg(Arg, Goal, AN),
AN =< A0, !,
delete(Skel),
cache(Goal).
max(Skel,_,Goal) :-
clean(Skel),
@@ -106,6 +107,7 @@ min(Skel,Arg,Goal) :-
arg(Arg, Skel, A0),
arg(Arg, Goal, AN),
AN >= A0, !,
delete(Skel),
cache(Goal).
min(Skel,_,Goal) :-
clean(Skel),