% ==================================================== % ogni atomo ha tutte variabili distinte nel body. Nella testa non necessariamente. :- pred constr(bool). :- mode constr(in). :- ignore constr/1. % ==================================================== % Program. mergesorting in ascending order.E.g., 3 =< 5 =< 5 =< 8 =< ... :- pred mergesort(list(int),list(int)). :- mode mergesort(in,out). mergesort([], []). mergesort([H], [H]). mergesort([H,K|T],S) :- cons(K,T,KT), cons(H,KT,HKT), % Every atom in the body has all distint variables split(HKT,L1,L2), % and no ADTs. This may not hold for the head atom. mergesort(L1,S1), % mergesort(L2,S2), merge(S1,S2,S). % merging :- pred cons(int,list(int),list(int)). :- mode cons(in,in,out). cons(H,T,[H|T]). % constructors to do like this. :- pred split(list(int),list(int),list(int)). :- mode split(in,out,out). split(L,L1,L2) :- N1=(N div 2), % integer division is div in SMTLIB. length(L,N), takedrop(N1,L,L1,L2). :- pred length(list(int),int). :- mode length(in,out). :- cata length/2-1. length([],L) :- constr(L=0). length([H|T],L) :- constr( L=(LT+1) ), length(T,LT). :- pred takedrop(int,list(int),list(int),list(int)). :- mode takedrop(in,in,out,out). takedrop(N,[],[],[]). takedrop(N,L,[],L) :- N=<0. takedrop(N,[H|T],[H|T1],L) :- constr((N>=1) & (N1=(N-1))), % ok also without constr(...): it is a constraint in LIA+Bool takedrop(N1,T,T1,L). :- pred merge(list(int),list(int),list(int)). :- mode merge(in,in,out). merge([],L,L). % non-linearity on head is ok merge([X|Xs],[],[X|Xs]). merge([X|Xs],[Y|Ys],[X|Zs]) :- constr(X=Y), cons(X,Xs,XXs), merge(XXs,Ys,Zs). % ==================================================== % catamorphism: length is in program. % not repeated here % Contract on mergesort: :- spec mergesort(L,S) ==> length(L,CL), length(S,CS) => constr( CL=CS ). % Contract on split: :- spec split(Xs,Ys,Zs) ==> length(Xs,NXs), length(Ys,NYs), length(Zs,NZs) => constr( NXs = (NYs+NZs) ). % Contract on takedrop: :- spec takedrop(N,Ls,Ts,Ds) ==> length(Ls,NLs), length(Ts,NTs), length(Ds,NDs) => constr( NLs = (NTs+NDs) ). % Contract on merge: :- spec merge(Xs,Ys,Zs) ==> length(Xs,NXs), length(Ys,NYs), length(Zs,NZs) => constr( NZs = (NXs+NYs) ). % Contract on cons: :- spec cons(H,T,HT) ==> length(T,NXT), length(HT,NXHT) => constr( NXHT = NXT+1 ). % ------------------------------------- % verification. % Property: :- pred ff1. ff1 :- % mergesort constr( ~(CL=CS)), length(L,CL), length(S,CS), mergesort(L,S). :- pred ff2. ff2 :- % split constr( ~(NXs = (NYs+NZs)) ), length(Xs,NXs), length(Ys,NYs), length(Zs,NZs), split(Xs,Ys,Zs). :- pred ff3. % merge ff3 :- constr( ~(NZs = (NXs+NYs)) ), length(Xs,NXs), length(Ys,NYs), length(Zs,NZs), merge(Xs,Ys,Zs). :- pred ff4. ff4 :- % takedrop constr( ~(LLs = (LTs+LDs))), length(Ls,LLs), length(Ts,LTs), length(Ds,LDs), takedrop(N,Ls,Ts,Ds). :- pred ff5. ff5 :- % cons constr( ~(NXHT = NXT+1) ), length(T,NXT), length(HT,NXHT), cons(H,T,HT). % --------------------------------------------------% NON-CATA predicates: cons constr merge mergesort split takedrop