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