concat#( cons( u , v ) , y ) | → | concat#( v , y ) |
less_leaves#( cons( u , v ) , cons( w , z ) ) | → | less_leaves#( concat( u , v ) , concat( w , z ) ) |
less_leaves#( cons( u , v ) , cons( w , z ) ) | → | concat#( u , v ) |
less_leaves#( cons( u , v ) , cons( w , z ) ) | → | concat#( w , z ) |
The dependency pairs are split into 2 component(s).
less_leaves#( cons( u , v ) , cons( w , z ) ) | → | less_leaves#( concat( u , v ) , concat( w , z ) ) |
Linear polynomial interpretation over the naturals
[concat (x1, x2) ] | = | x1 + x2 | |
[true] | = | 2 | |
[less_leaves# (x1, x2) ] | = | 2 x1 | |
[leaf] | = | 0 | |
[false] | = | 0 | |
[less_leaves (x1, x2) ] | = | 2 x1 | |
[cons (x1, x2) ] | = | 2 x1 + x2 + 2 | |
[x] | = | 0 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
none |
All dependency pairs have been removed.
concat#( cons( u , v ) , y ) | → | concat#( v , y ) |
Linear polynomial interpretation over the naturals
[concat (x1, x2) ] | = | x1 + x2 + 2 | |
[true] | = | 2 | |
[leaf] | = | 1 | |
[false] | = | 1 | |
[concat# (x1, x2) ] | = | x1 | |
[less_leaves (x1, x2) ] | = | x1 + 1 | |
[cons (x1, x2) ] | = | x1 + x2 + 3 | |
[x] | = | 0 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
none |
All dependency pairs have been removed.