YES TRS: f(X) -> if(X,c(),n__f(true())) if(true(),X,Y) -> X if(false(),X,Y) -> activate(Y) f(X) -> n__f(X) activate(n__f(X)) -> f(X) activate(X) -> X linear polynomial interpretations on N: f_A(x1) = x1 + 4 f#_A(x1) = x1 + 4 if_A(x1,x2,x3) = x1 + x2 + x3 if#_A(x1,x2,x3) = x1 + x2 + x3 c_A = 1 c#_A = 1 n__f_A(x1) = x1 + 1 n__f#_A(x1) = x1 + 1 true_A = 1 true#_A = 1 false_A = 5 false#_A = 5 activate_A(x1) = x1 + 4 activate#_A(x1) = x1 + 4 precedence: false > f > if = c = true > n__f > activate