Certification Problem
Input (TPDB Runtime_Complexity_Innermost_Rewriting/Rubio_04/test829)
The rewrite relation of the following TRS is considered.
|
f(c(X,s(Y))) |
→ |
f(c(s(X),Y)) |
(1) |
|
g(c(s(X),Y)) |
→ |
f(c(X,s(Y))) |
(2) |
The evaluation strategy is innermost.Property / Task
Determine bounds on the runtime complexity.Answer / Result
An upperbound for the complexity is O(n).Proof (by AProVE @ termCOMP 2023)
1 Bounds
The given TRS is
match-(raise)-bounded by 2.
This is shown by the following automaton.
-
final states:
{0, 1, 2}
-
transitions:
|
c0(0,0) |
→ |
0 |
|
s0(0) |
→ |
0 |
|
f0(0) |
→ |
1 |
|
g0(0) |
→ |
2 |
|
s1(0) |
→ |
4 |
|
c1(4,0) |
→ |
3 |
|
f1(3) |
→ |
1 |
|
s1(0) |
→ |
6 |
|
c1(0,6) |
→ |
5 |
|
f1(5) |
→ |
2 |
|
s1(4) |
→ |
4 |
|
s2(0) |
→ |
8 |
|
c2(8,0) |
→ |
7 |
|
f2(7) |
→ |
2 |
|
s1(8) |
→ |
4 |
|
f1(3) |
→ |
2 |