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