CurryInfo: call-analysis-3.2.0 / Analysis.lessCSpecific

definition: Info
 
lessCSpecific :: CTerm -> CTerm -> Bool
lessCSpecific CBot _ = True
lessCSpecific (CVar _) _ = False
lessCSpecific (CCons c1 args1) t2 = case t2 of
  CCons c2 args2 -> c1==c2 && all (uncurry lessCSpecific) (zip args1 args2)
  _              -> False
demand: Info
 argument 1
deterministic: Info
 deterministic operation
documentation: Info
 
is bottom 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
 {({CBot},_) |-> {True} || ({CVar},_) |-> {False} || ({CCons},{CCons}) |-> _ || ({CCons},{CBot}) |-> _ || ({CCons},{CVar}) |-> _}
name: Info
 lessCSpecific
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 CTerm -> CTerm -> 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