MAYBE
* Step 1: Failure MAYBE
  + Considered Problem:
      - Strict TRS:
          cond(false(),x,y) -> 0()
          cond(true(),x,y) -> s(minus(x,s(y)))
          ge(u,0()) -> true()
          ge(0(),s(v)) -> false()
          ge(s(u),s(v)) -> ge(u,v)
          minus(x,y) -> cond(ge(x,s(y)),x,y)
      - Signature:
          {cond/3,ge/2,minus/2} / {0/0,false/0,s/1,true/0}
      - Obligation:
          innermost runtime complexity wrt. defined symbols {cond,ge,minus} and constructors {0,false,s,true}
  + Applied Processor:
      EmptyProcessor
  + Details:
      The problem is still open.
MAYBE