MAYBE
* Step 1: Failure MAYBE
  + Considered Problem:
      - Strict TRS:
          cond(false(),x,y) -> 0()
          cond(true(),x,y) -> s(minus(x,s(y)))
          gt(0(),v) -> false()
          gt(s(u),0()) -> true()
          gt(s(u),s(v)) -> gt(u,v)
          minus(x,y) -> cond(gt(x,y),x,y)
      - Signature:
          {cond/3,gt/2,minus/2} / {0/0,false/0,s/1,true/0}
      - Obligation:
          innermost runtime complexity wrt. defined symbols {cond,gt,minus} and constructors {0,false,s,true}
  + Applied Processor:
      NaturalPI {shape = Mixed 3, restrict = NoRestrict, uargs = UArgs, urules = URules, selector = Nothing}
  + Details:
      Incompatible
MAYBE