CurryInfo: call-analysis-3.2.0 / Analysis.lessSpecificEqCallPattern

definition: Info
 
lessSpecificEqCallPattern :: (a->a->Bool) -> SemEq a -> SemEq a -> Bool
lessSpecificEqCallPattern lessSpecific (Eq f1 args1 v1) (Eq f2 args2 v2) =
  f1==f2 && all (uncurry lessSpecific) (zip args1 args2) && lessSpecific v1 v2
demand: Info
 arguments 2 3
deterministic: Info
 deterministic operation
documentation: Info
 
Is semantic equation e1 less specific than e2 w.r.t. some
call pattern? The first argument is the information ordering on terms.
A semantic equation is less specific iff all arguments and the result
of the equations are pairwise less specific.
failfree: Info
 (_, _, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,{Eq},{Eq}) |-> _}
name: Info
 lessSpecificEqCallPattern
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 (a -> a -> Prelude.Bool) -> SemEq a -> SemEq a -> 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