WORST_CASE(?,O(n^1))
* Step 1: Ara WORST_CASE(?,O(n^1))
    + Considered Problem:
        - Strict TRS:
            main(x1) -> take_l#2(x1)
            take_l#2(0()) -> Nil()
            take_l#2(S(x2)) -> Cons(take_l#2(x2))
        - Signature:
            {main/1,take_l#2/1} / {0/0,Cons/1,Nil/0,S/1}
        - Obligation:
            innermost runtime complexity wrt. defined symbols {main,take_l#2} and constructors {0,Cons,Nil,S}
    + Applied Processor:
        Ara {araHeuristics = NoHeuristics, minDegree = 1, maxDegree = 2, araTimeout = 5, araRuleShifting = Nothing}
    + Details:
        Signatures used:
        ----------------
          0 :: [] -(0)-> "A"(12)
          Cons :: ["A"(0)] -(0)-> "A"(14)
          Nil :: [] -(0)-> "A"(14)
          S :: ["A"(12)] -(12)-> "A"(12)
          main :: ["A"(14)] -(16)-> "A"(0)
          take_l#2 :: ["A"(12)] -(15)-> "A"(6)
        
        
        Cost-free Signatures used:
        --------------------------
        
        
        
        Base Constructor Signatures used:
        ---------------------------------
          "0_A" :: [] -(0)-> "A"(1)
          "Cons_A" :: ["A"(0)] -(0)-> "A"(1)
          "Nil_A" :: [] -(0)-> "A"(1)
          "S_A" :: ["A"(1)] -(1)-> "A"(1)
        

WORST_CASE(?,O(n^1))