definition:
|
minVarInTRS :: TRS _ -> Maybe VarIdx
minVarInTRS trs = case mapMaybe minVarInRule trs of
[] -> Nothing
vs@(_:_) -> Just (minimum vs)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Returns the minimum variable in a term rewriting system or `Nothing` if no
--- variable exists.
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> {Just,Nothing}}
|
name:
|
minVarInTRS
|
precedence:
|
no precedence defined
|
result-values:
|
{Just,Nothing}
|
signature:
|
[(Rewriting.Term.Term a, Rewriting.Term.Term a)] -> Prelude.Maybe Prelude.Int
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|