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