MAYBE * Step 1: Failure MAYBE + Considered Problem: - Strict TRS: fac(0(),x) -> x fac(s(x),y) -> fac(p(s(x)),times(s(x),y)) factorial(x) -> fac(x,s(0())) p(s(0())) -> 0() p(s(s(x))) -> s(p(s(x))) plus(0(),x) -> x plus(s(x),y) -> s(plus(p(s(x)),y)) times(0(),y) -> 0() times(s(x),y) -> plus(y,times(p(s(x)),y)) - Signature: {fac/2,factorial/1,p/1,plus/2,times/2} / {0/0,s/1} - Obligation: innermost runtime complexity wrt. defined symbols {fac,factorial,p,plus,times} and constructors {0,s} + Applied Processor: Ara {heuristics_ = NoHeuristics, minDegree = 1, maxDegree = 3, araTimeout = 60, araFindStrictRules = Nothing, araSmtSolver = MiniSMT} + Details: The input can not be schown compatible. MAYBE