Term Rewriting System R:
[y, z, x]
f(cons(nil, y)) -> y
f(cons(f(cons(nil, y)), z)) -> copy(n, y, z)
copy(0, y, z) -> f(z)
copy(s(x), y, z) -> copy(x, y, cons(f(y), z))
Termination of R to be shown.
R
↳Dependency Pair Analysis
R contains the following Dependency Pairs:
F(cons(f(cons(nil, y)), z)) -> COPY(n, y, z)
COPY(0, y, z) -> F(z)
COPY(s(x), y, z) -> COPY(x, y, cons(f(y), z))
COPY(s(x), y, z) -> F(y)
Furthermore, R contains one SCC.
R
↳DPs
→DP Problem 1
↳Size-Change Principle
Dependency Pair:
COPY(s(x), y, z) -> COPY(x, y, cons(f(y), z))
Rules:
f(cons(nil, y)) -> y
f(cons(f(cons(nil, y)), z)) -> copy(n, y, z)
copy(0, y, z) -> f(z)
copy(s(x), y, z) -> copy(x, y, cons(f(y), z))
We number the DPs as follows:
- COPY(s(x), y, z) -> COPY(x, y, cons(f(y), 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.
Termination of R successfully shown.
Duration:
0:00 minutes