/export/starexec/sandbox2/solver/bin/starexec_run_FirstOrder /export/starexec/sandbox2/benchmark/theBenchmark.xml /export/starexec/sandbox2/output/output_files -------------------------------------------------------------------------------- MAYBE We consider the system theBenchmark. We are asked to determine termination of the following first-order TRS. 0 : [] --> o active : [o] --> o cons : [o * o] --> o dbl : [o] --> o dbls : [o] --> o from : [o] --> o indx : [o * o] --> o mark : [o] --> o nil : [] --> o ok : [o] --> o proper : [o] --> o s : [o] --> o sel : [o * o] --> o top : [o] --> o active(dbl(0)) => mark(0) active(dbl(s(X))) => mark(s(s(dbl(X)))) active(dbls(nil)) => mark(nil) active(dbls(cons(X, Y))) => mark(cons(dbl(X), dbls(Y))) active(sel(0, cons(X, Y))) => mark(X) active(sel(s(X), cons(Y, Z))) => mark(sel(X, Z)) active(indx(nil, X)) => mark(nil) active(indx(cons(X, Y), Z)) => mark(cons(sel(X, Z), indx(Y, Z))) active(from(X)) => mark(cons(X, from(s(X)))) active(dbl(X)) => dbl(active(X)) active(dbls(X)) => dbls(active(X)) active(sel(X, Y)) => sel(active(X), Y) active(sel(X, Y)) => sel(X, active(Y)) active(indx(X, Y)) => indx(active(X), Y) dbl(mark(X)) => mark(dbl(X)) dbls(mark(X)) => mark(dbls(X)) sel(mark(X), Y) => mark(sel(X, Y)) sel(X, mark(Y)) => mark(sel(X, Y)) indx(mark(X), Y) => mark(indx(X, Y)) proper(dbl(X)) => dbl(proper(X)) proper(0) => ok(0) proper(s(X)) => s(proper(X)) proper(dbls(X)) => dbls(proper(X)) proper(nil) => ok(nil) proper(cons(X, Y)) => cons(proper(X), proper(Y)) proper(sel(X, Y)) => sel(proper(X), proper(Y)) proper(indx(X, Y)) => indx(proper(X), proper(Y)) proper(from(X)) => from(proper(X)) dbl(ok(X)) => ok(dbl(X)) s(ok(X)) => ok(s(X)) dbls(ok(X)) => ok(dbls(X)) cons(ok(X), ok(Y)) => ok(cons(X, Y)) sel(ok(X), ok(Y)) => ok(sel(X, Y)) indx(ok(X), ok(Y)) => ok(indx(X, Y)) from(ok(X)) => ok(from(X)) top(mark(X)) => top(proper(X)) top(ok(X)) => top(active(X))