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