Certification Problem
Input (TPDB TRS_Standard/SK90/4.27)
The rewrite relation of the following TRS is considered.
int(0,0) |
→ |
.(0,nil) |
(1) |
int(0,s(y)) |
→ |
.(0,int(s(0),s(y))) |
(2) |
int(s(x),0) |
→ |
nil |
(3) |
int(s(x),s(y)) |
→ |
int_list(int(x,y)) |
(4) |
int_list(nil) |
→ |
nil |
(5) |
int_list(.(x,y)) |
→ |
.(s(x),int_list(y)) |
(6) |
Property / Task
Prove or disprove termination.Answer / Result
Yes.Proof (by NaTT @ termCOMP 2023)
1 Dependency Pair Transformation
The following set of initial dependency pairs has been identified.
int_list#(.(x,y)) |
→ |
int_list#(y) |
(7) |
int#(s(x),s(y)) |
→ |
int_list#(int(x,y)) |
(8) |
int#(0,s(y)) |
→ |
int#(s(0),s(y)) |
(9) |
int#(s(x),s(y)) |
→ |
int#(x,y) |
(10) |
1.1 Dependency Graph Processor
The dependency pairs are split into 2
components.