/export/starexec/sandbox2/solver/bin/starexec_run_Itrs /export/starexec/sandbox2/benchmark/theBenchmark.itrs /export/starexec/sandbox2/output/output_files -------------------------------------------------------------------------------- YES DP problem for innermost termination. P = eval#(x, y) -> eval#(x + 1, y) [y > x && y >= x] eval#(I0, I1) -> eval#(I0 + 1, I1) [I0 > I1 && I1 >= I0] eval#(I2, I3) -> eval#(I2, I3 + 1) [I3 > I2 && I2 > I3] eval#(I4, I5) -> eval#(I4, I5 + 1) [I4 > I5] R = eval(x, y) -> eval(x + 1, y) [y > x && y >= x] eval(I0, I1) -> eval(I0 + 1, I1) [I0 > I1 && I1 >= I0] eval(I2, I3) -> eval(I2, I3 + 1) [I3 > I2 && I2 > I3] eval(I4, I5) -> eval(I4, I5 + 1) [I4 > I5] The dependency graph for this problem is: 0 -> 0 1 -> 2 -> 3 -> 3 Where: 0) eval#(x, y) -> eval#(x + 1, y) [y > x && y >= x] 1) eval#(I0, I1) -> eval#(I0 + 1, I1) [I0 > I1 && I1 >= I0] 2) eval#(I2, I3) -> eval#(I2, I3 + 1) [I3 > I2 && I2 > I3] 3) eval#(I4, I5) -> eval#(I4, I5 + 1) [I4 > I5] We have the following SCCs. { 0 } { 3 } DP problem for innermost termination. P = eval#(I4, I5) -> eval#(I4, I5 + 1) [I4 > I5] R = eval(x, y) -> eval(x + 1, y) [y > x && y >= x] eval(I0, I1) -> eval(I0 + 1, I1) [I0 > I1 && I1 >= I0] eval(I2, I3) -> eval(I2, I3 + 1) [I3 > I2 && I2 > I3] eval(I4, I5) -> eval(I4, I5 + 1) [I4 > I5] We use the reverse value criterion with the projection function NU: NU[eval#(z1,z2)] = z1 + -1 * z2 This gives the following inequalities: I4 > I5 ==> I4 + -1 * I5 > I4 + -1 * (I5 + 1) with I4 + -1 * I5 >= 0 All dependency pairs are strictly oriented, so the entire dependency pair problem may be removed. DP problem for innermost termination. P = eval#(x, y) -> eval#(x + 1, y) [y > x && y >= x] R = eval(x, y) -> eval(x + 1, y) [y > x && y >= x] eval(I0, I1) -> eval(I0 + 1, I1) [I0 > I1 && I1 >= I0] eval(I2, I3) -> eval(I2, I3 + 1) [I3 > I2 && I2 > I3] eval(I4, I5) -> eval(I4, I5 + 1) [I4 > I5] We use the reverse value criterion with the projection function NU: NU[eval#(z1,z2)] = z2 + -1 * z1 This gives the following inequalities: y > x && y >= x ==> y + -1 * x > y + -1 * (x + 1) with y + -1 * x >= 0 All dependency pairs are strictly oriented, so the entire dependency pair problem may be removed.