MAYBE Problem: f(a(),f(b(),f(a(),x))) -> f(a(),f(b(),f(b(),f(a(),x)))) f(b(),f(b(),f(b(),x))) -> f(b(),f(b(),x)) Proof: Complexity Transformation Processor: strict: f(a(),f(b(),f(a(),x))) -> f(a(),f(b(),f(b(),f(a(),x)))) f(b(),f(b(),f(b(),x))) -> f(b(),f(b(),x)) weak: Matrix Interpretation Processor: dimension: 1 max_matrix: 1 interpretation: [f](x0, x1) = x0 + x1, [b] = 1, [a] = 0 orientation: f(a(),f(b(),f(a(),x))) = x + 1 >= x + 2 = f(a(),f(b(),f(b(),f(a(),x)))) f(b(),f(b(),f(b(),x))) = x + 3 >= x + 2 = f(b(),f(b(),x)) problem: strict: f(a(),f(b(),f(a(),x))) -> f(a(),f(b(),f(b(),f(a(),x)))) weak: f(b(),f(b(),f(b(),x))) -> f(b(),f(b(),x)) Open