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.
{loaded in 3388.211 msec.}
{preprocessed for plai in 4.0 msec.}
{analyzed by plai using eterms with local-control off in 0.0 msec.}
{preprocessed for plai in 0.0 msec.}
{analyzed by plai using shfr with local-control off in 4.0 msec.}
{preprocessed for nfg in 0.0 msec.}
{analyzed by nfg in 4.001 msec.}
{analysis information stored in 0.0 msec.}
{NOTE (infercost): Using non-parametric cost analysis}
{preprocessed for lower bounds cost analysis in 0.0 msec.}
{lower bounds cost analysis performed in 0.0 msec.}
{lower bounds cost information stored in 0.0 msec.}
{preprocessed for upper bounds cost analysis in 0.0 msec.}
{upper bounds cost analysis performed in 0.0 msec.}
{upper bounds cost information stored in 0.0 msec.}
{written file /tmp/tmp0IKHzu/tree_eterms_shfr_nfg_steps_ualb_co.pl}
:- module(_1,[bin_tree/1],[assertions,regtypes,nativeprops]).
:- entry bin_tree(A)
: ground(A).
:- true pred bin_tree(A)
: gnd(A)
=> rt3(A).
:- true pred bin_tree(A)
: ground([A])
=> ground([A]).
:- true pred bin_tree(A)
: gnd(A)
=> rt3(A)
+ ( possibly_fails, not_covered ).
:- true pred bin_tree(A)
: gnd(A)
=> ( rt3(A), size_lb(A,size(A)), size_ub(A,size(A)) )
+ ( steps_lb(0), steps_ub(size(A)) ).
bin_tree(void).
bin_tree(tree(_1,Left,Right)) :-
bin_tree(Left),
bin_tree(Right).
:- regtype rt3/1.
rt3(void).
rt3(tree(A,B,C)) :-
gnd(A),
rt3(B),
rt3(C).