Input TRS: 1: app(nil(),YS) -> YS 2: app(cons(X),YS) -> cons(X) 3: from(X) -> cons(X) 4: zWadr(nil(),YS) -> nil() 5: zWadr(XS,nil()) -> nil() 6: zWadr(cons(X),cons(Y)) -> cons(app(Y,cons(X))) 7: prefix(L) -> cons(nil()) Number of strict rules: 7 Direct Order(PosReal,>,Poly) ... removes: 4 1 3 5 7 6 2 prefix(x1) weight: 28101 + x1 zWadr(x1,x2) weight: (/ 1 2) + x1 + 2 * x2 from(x1) weight: 28101 + x1 nil() weight: 0 cons(x1) weight: (/ 56201 2) + x1 app(x1,x2) weight: (/ 1 2) + 2 * x1 + x2 Number of strict rules: 0 YES