CurryInfo: call-analysis-3.2.0 / Analysis.lessDSpecific

definition: Info
 
lessDSpecific :: DTerm -> DTerm -> Bool
lessDSpecific DBot _ = True
lessDSpecific CutVar t = t==CutVar
lessDSpecific (DCons c1 args1) t2 = case t2 of
  DCons c2 args2 -> c1==c2 && all (uncurry lessDSpecific) (zip args1 args2)
  _              -> False
demand: Info
 argument 1
deterministic: Info
 deterministic operation
documentation: Info
 
is abstract term t1 a generalization (i.e., with less information) than t2?
failfree: Info
 (_, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {({DBot},_) |-> {True} || ({CutVar},_) |-> _ || ({DCons},{DCons}) |-> _ || ({DCons},{DBot}) |-> _ || ({DCons},{CutVar}) |-> _}
name: Info
 lessDSpecific
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 DTerm -> DTerm -> Prelude.Bool
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 reducible on all ground data terms