CurryInfo: rewriting-3.0.0 / Rewriting.Narrowing.narrowBy

definition: Info
 
narrowBy :: NStrategy f -> TRS f -> Int -> Term f -> [(Subst f, Term f)]
narrowBy s trs n t | n <= 0    = []
                   | otherwise = let v = maybe 0 (+ 1) (maxVarInTerm t)
                                  in narrowBy' v emptySubst s trs n t
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
documentation: Info
 
Narrows a term with the given strategy and term rewriting system by the
given number of steps.
failfree: Info
 <FAILING>
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_,_,_) |-> _}
name: Info
 narrowBy
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 ([(Rewriting.Term.Term a, Rewriting.Term.Term a)] -> Rewriting.Term.Term a
-> [([Prelude.Int], (Rewriting.Term.Term a, Rewriting.Term.Term a), Data.Map.Map Prelude.Int (Rewriting.Term.Term a))])
-> [(Rewriting.Term.Term a, Rewriting.Term.Term a)] -> Prelude.Int
-> Rewriting.Term.Term a
-> [(Data.Map.Map Prelude.Int (Rewriting.Term.Term a), Rewriting.Term.Term a)]
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 possibly non-reducible on same data term