MAYBE
* Step 1: DependencyPairs MAYBE
    + Considered Problem:
        - Strict TRS:
            f(x,s(s(y))) -> f(y,x)
            f(s(x),y) -> f(x,s(s(x)))
        - Signature:
            {f/2} / {s/1}
        - Obligation:
            innermost runtime complexity wrt. defined symbols {f} and constructors {s}
    + Applied Processor:
        DependencyPairs {dpKind_ = DT}
    + Details:
        We add the following dependency tuples:
        
        Strict DPs
          f#(x,s(s(y))) -> c_1(f#(y,x))
          f#(s(x),y) -> c_2(f#(x,s(s(x))))
        Weak DPs
          
        
        and mark the set of starting terms.
* Step 2: UsableRules MAYBE
    + Considered Problem:
        - Strict DPs:
            f#(x,s(s(y))) -> c_1(f#(y,x))
            f#(s(x),y) -> c_2(f#(x,s(s(x))))
        - Weak TRS:
            f(x,s(s(y))) -> f(y,x)
            f(s(x),y) -> f(x,s(s(x)))
        - Signature:
            {f/2,f#/2} / {s/1,c_1/1,c_2/1}
        - Obligation:
            innermost runtime complexity wrt. defined symbols {f#} and constructors {s}
    + Applied Processor:
        UsableRules
    + Details:
        We replace rewrite rules by usable rules:
          f#(x,s(s(y))) -> c_1(f#(y,x))
          f#(s(x),y) -> c_2(f#(x,s(s(x))))
* Step 3: Failure MAYBE
  + Considered Problem:
      - Strict DPs:
          f#(x,s(s(y))) -> c_1(f#(y,x))
          f#(s(x),y) -> c_2(f#(x,s(s(x))))
      - Signature:
          {f/2,f#/2} / {s/1,c_1/1,c_2/1}
      - Obligation:
          innermost runtime complexity wrt. defined symbols {f#} and constructors {s}
  + Applied Processor:
      EmptyProcessor
  + Details:
      The problem is still open.
MAYBE