MAYBE * Step 1: Failure MAYBE + Considered Problem: - Strict TRS: id_inc(x) -> x id_inc(x) -> s(x) if(false(),x,y) -> y if(true(),x,y) -> rand(p(x),id_inc(y)) nonZero(0()) -> false() nonZero(s(x)) -> true() p(s(0())) -> 0() p(s(s(x))) -> s(p(s(x))) rand(x,y) -> if(nonZero(x),x,y) random(x) -> rand(x,0()) - Signature: {id_inc/1,if/3,nonZero/1,p/1,rand/2,random/1} / {0/0,false/0,s/1,true/0} - Obligation: innermost runtime complexity wrt. defined symbols {id_inc,if,nonZero,p,rand,random} 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