/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. !minus : [o * o] --> o 0 : [] --> o gcd : [o * o] --> o max : [o * o] --> o min : [o * o] --> o s : [o] --> o min(X, 0) => 0 min(0, X) => 0 min(s(X), s(Y)) => s(min(X, Y)) max(X, 0) => X max(0, X) => X max(s(X), s(Y)) => s(max(X, Y)) !minus(X, 0) => X !minus(s(X), s(Y)) => !minus(X, Y) gcd(s(X), s(Y)) => gcd(!minus(s(max(X, Y)), s(min(X, Y))), s(min(X, Y)))