/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. app : [o * o] --> o cons : [o * o] --> o from : [o] --> o nil : [] --> o prefix : [o] --> o s : [o] --> o zWadr : [o * o] --> o app(nil, X) => X app(cons(X, Y), Z) => cons(X, app(Y, Z)) from(X) => cons(X, from(s(X))) zWadr(nil, X) => nil zWadr(X, nil) => nil zWadr(cons(X, Y), cons(Z, U)) => cons(app(Z, cons(X, nil)), zWadr(Y, U)) prefix(X) => cons(nil, zWadr(X, prefix(X)))