Term Rewriting System R:
[X, Z, Y, X1, X2]
from(X) -> cons(X, nfrom(s(X)))
from(X) -> nfrom(X)
first(0, Z) -> nil
first(s(X), cons(Y, Z)) -> cons(Y, nfirst(X, activate(Z)))
first(X1, X2) -> nfirst(X1, X2)
sel(0, cons(X, Z)) -> X
sel(s(X), cons(Y, Z)) -> sel(X, activate(Z))
activate(nfrom(X)) -> from(X)
activate(nfirst(X1, X2)) -> first(X1, X2)
activate(X) -> X
Innermost Termination of R to be shown.
R
↳Dependency Pair Analysis
R contains the following Dependency Pairs:
FIRST(s(X), cons(Y, Z)) -> ACTIVATE(Z)
SEL(s(X), cons(Y, Z)) -> SEL(X, activate(Z))
SEL(s(X), cons(Y, Z)) -> ACTIVATE(Z)
ACTIVATE(nfrom(X)) -> FROM(X)
ACTIVATE(nfirst(X1, X2)) -> FIRST(X1, X2)
Furthermore, R contains two SCCs.
R
↳DPs
→DP Problem 1
↳Usable Rules (Innermost)
→DP Problem 2
↳UsableRules
Dependency Pairs:
ACTIVATE(nfirst(X1, X2)) -> FIRST(X1, X2)
FIRST(s(X), cons(Y, Z)) -> ACTIVATE(Z)
Rules:
from(X) -> cons(X, nfrom(s(X)))
from(X) -> nfrom(X)
first(0, Z) -> nil
first(s(X), cons(Y, Z)) -> cons(Y, nfirst(X, activate(Z)))
first(X1, X2) -> nfirst(X1, X2)
sel(0, cons(X, Z)) -> X
sel(s(X), cons(Y, Z)) -> sel(X, activate(Z))
activate(nfrom(X)) -> from(X)
activate(nfirst(X1, X2)) -> first(X1, X2)
activate(X) -> X
Strategy:
innermost
As we are in the innermost case, we can delete all 10 non-usable-rules.
R
↳DPs
→DP Problem 1
↳UsableRules
→DP Problem 3
↳Size-Change Principle
→DP Problem 2
↳UsableRules
Dependency Pairs:
ACTIVATE(nfirst(X1, X2)) -> FIRST(X1, X2)
FIRST(s(X), cons(Y, Z)) -> ACTIVATE(Z)
Rule:
none
Strategy:
innermost
We number the DPs as follows:
- ACTIVATE(nfirst(X1, X2)) -> FIRST(X1, X2)
- FIRST(s(X), cons(Y, Z)) -> ACTIVATE(Z)
and get the following Size-Change Graph(s):
which lead(s) to this/these maximal multigraph(s):
DP: empty set
Oriented Rules: none
We used the order Homeomorphic Embedding Order with Non-Strict Precedence.
trivial
with Argument Filtering System:
cons(x1, x2) -> cons(x1, x2)
s(x1) -> s(x1)
nfirst(x1, x2) -> nfirst(x1, x2)
We obtain no new DP problems.
R
↳DPs
→DP Problem 1
↳UsableRules
→DP Problem 2
↳Usable Rules (Innermost)
Dependency Pair:
SEL(s(X), cons(Y, Z)) -> SEL(X, activate(Z))
Rules:
from(X) -> cons(X, nfrom(s(X)))
from(X) -> nfrom(X)
first(0, Z) -> nil
first(s(X), cons(Y, Z)) -> cons(Y, nfirst(X, activate(Z)))
first(X1, X2) -> nfirst(X1, X2)
sel(0, cons(X, Z)) -> X
sel(s(X), cons(Y, Z)) -> sel(X, activate(Z))
activate(nfrom(X)) -> from(X)
activate(nfirst(X1, X2)) -> first(X1, X2)
activate(X) -> X
Strategy:
innermost
As we are in the innermost case, we can delete all 2 non-usable-rules.
R
↳DPs
→DP Problem 1
↳UsableRules
→DP Problem 2
↳UsableRules
→DP Problem 4
↳Size-Change Principle
Dependency Pair:
SEL(s(X), cons(Y, Z)) -> SEL(X, activate(Z))
Rules:
first(0, Z) -> nil
first(X1, X2) -> nfirst(X1, X2)
first(s(X), cons(Y, Z)) -> cons(Y, nfirst(X, activate(Z)))
from(X) -> cons(X, nfrom(s(X)))
from(X) -> nfrom(X)
activate(nfrom(X)) -> from(X)
activate(nfirst(X1, X2)) -> first(X1, X2)
activate(X) -> X
Strategy:
innermost
We number the DPs as follows:
- SEL(s(X), cons(Y, Z)) -> SEL(X, activate(Z))
and get the following Size-Change Graph(s):
which lead(s) to this/these maximal multigraph(s):
DP: empty set
Oriented Rules: none
We used the order Homeomorphic Embedding Order with Non-Strict Precedence.
trivial
with Argument Filtering System:
cons(x1, x2) -> cons(x1, x2)
s(x1) -> s(x1)
We obtain no new DP problems.
Innermost Termination of R successfully shown.
Duration:
0:00 minutes