/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 f : [o * o * o * o] --> o false : [] --> o gt : [o * o] --> o plus : [o * o] --> o s : [o] --> o true : [] --> o f(true, X, Y, Z) => f(gt(X, plus(Y, Z)), X, s(Y), Z) f(true, X, Y, Z) => f(gt(X, plus(Y, Z)), X, Y, s(Z)) plus(X, 0) => X plus(X, s(Y)) => s(plus(X, Y)) gt(0, X) => false gt(s(X), 0) => true gt(s(X), s(Y)) => gt(X, Y)