/export/starexec/sandbox/solver/bin/starexec_run_FirstOrder /export/starexec/sandbox/benchmark/theBenchmark.xml /export/starexec/sandbox/output/output_files -------------------------------------------------------------------------------- MAYBE We consider the system theBenchmark. We are asked to determine termination of the following first-order TRS. check : [o] --> o cons : [o * o] --> o nil : [] --> o rest : [o] --> o sent : [o] --> o top : [o] --> o top(sent(X)) => top(check(rest(X))) rest(nil) => sent(nil) rest(cons(X, Y)) => sent(Y) check(sent(X)) => sent(check(X)) check(rest(X)) => rest(check(X)) check(cons(X, Y)) => cons(check(X), Y) check(cons(X, Y)) => cons(X, check(Y)) check(cons(X, Y)) => cons(X, Y)