Ciao Preprocessor (integrated Alpha version)
 | This is an alpha distribution, meant only for testing. Please do let us 
 | know at ciaopp-bugclip.dia.fi.upm.es any problems you may have.

{In /tmp/tmpSz2s43/list.pl
{loaded in 3784.236 msec.}
{preprocessed for plai in 0.0 msec.}
{analyzed by plai using eterms with local-control off in 4.0 msec.}
{preprocessed for plai in 0.0 msec.}
{analyzed by plai using shfr with local-control off in 0.0 msec.}
{preprocessed for nfg in 0.0 msec.}
{analyzed by nfg in 0.0 msec.}
{analysis information stored in 0.0 msec.}
{preprocessed for ub bounds cost analysis in 0.0 msec.}
{ub bounds cost analysis performed in 8.001 msec.}
{ub bounds cost information stored in 0.0 msec.}
{preprocessed for lb bounds cost analysis in 0.0 msec.}
{lb bounds cost analysis performed in 0.0 msec.}
{lb bounds cost information stored in 0.0 msec.}
{written file /tmp/tmpSz2s43/list_eterms_shfr_nfg_resources_co.pl}
:- module(_1,[list/1],[assertions,predefres(res_steps),nativeprops,basicmodes,regtypes]).

:- entry list(A)
         : ground(A).

:- true pred list(A)
         : gnd(A)
        => list(A,gnd).

:- true pred list(A)
         : ground([A])
        => ground([A]).

:- true pred list(A)
         : gnd(A)
        => list(A,gnd)
         + ( possibly_fails, not_covered ).

:- true pred list(A)
         : gnd(A)
        => ( list(A,gnd), size(lb,A,length(A)) )
         + cost(lb,steps,0).

:- true pred list(A)
         : gnd(A)
        => ( list(A,gnd), size(ub,A,length(A)) )
         + cost(ub,steps,length(A)+1).

list([]).
list([_1|Ts]) :-
        list(Ts).