| not#( x ) | → | if#( x , false , true ) |
| and#( x , y ) | → | if#( x , y , false ) |
| or#( x , y ) | → | if#( x , true , y ) |
| implies#( x , y ) | → | if#( x , y , true ) |
| =#( x , y ) | → | if#( x , y , not( y ) ) |
| =#( x , y ) | → | not#( y ) |
| =#( x , y ) | → | if#( x , y , if( y , false , true ) ) |
| =#( x , y ) | → | if#( y , false , true ) |
The dependency pairs are split into 0 component(s).