minus#( s( X ) , s( Y ) ) | → | minus#( X , Y ) |
geq#( s( X ) , s( Y ) ) | → | geq#( X , Y ) |
div#( s( X ) , s( Y ) ) | → | if#( geq( X , Y ) , s( div( minus( X , Y ) , s( Y ) ) ) , 0 ) |
div#( s( X ) , s( Y ) ) | → | geq#( X , Y ) |
div#( s( X ) , s( Y ) ) | → | div#( minus( X , Y ) , s( Y ) ) |
div#( s( X ) , s( Y ) ) | → | minus#( X , Y ) |
The dependency pairs are split into 3 component(s).
div#( s( X ) , s( Y ) ) | → | div#( minus( X , Y ) , s( Y ) ) |
Linear polynomial interpretation over the naturals
[minus (x1, x2) ] | = | x1 | |
[true] | = | 0 | |
[if (x1, x2, x3) ] | = | x1 + 2 x2 | |
[false] | = | 3 | |
[s (x1) ] | = | 2 x1 + 1 | |
[0] | = | 0 | |
[div# (x1, x2) ] | = | x1 | |
[geq (x1, x2) ] | = | 2 x1 + 3 x2 + 1 | |
[div (x1, x2) ] | = | 2 x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
none |
All dependency pairs have been removed.
minus#( s( X ) , s( Y ) ) | → | minus#( X , Y ) |
Linear polynomial interpretation over the naturals
[minus (x1, x2) ] | = | 0 | |
[true] | = | 0 | |
[if (x1, x2, x3) ] | = | x1 + x2 + x3 | |
[false] | = | 0 | |
[s (x1) ] | = | 2 x1 + 2 | |
[0] | = | 0 | |
[minus# (x1, x2) ] | = | 3 x1 + 3 x2 | |
[geq (x1, x2) ] | = | x1 | |
[div (x1, x2) ] | = | x1 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
none |
All dependency pairs have been removed.
geq#( s( X ) , s( Y ) ) | → | geq#( X , Y ) |
Linear polynomial interpretation over the naturals
[minus (x1, x2) ] | = | 0 | |
[true] | = | 0 | |
[if (x1, x2, x3) ] | = | x1 + x2 + x3 | |
[false] | = | 0 | |
[s (x1) ] | = | 2 x1 + 2 | |
[0] | = | 0 | |
[geq (x1, x2) ] | = | x1 | |
[div (x1, x2) ] | = | x1 | |
[geq# (x1, x2) ] | = | 3 x1 + 3 x2 | |
[f(x1, ..., xn)] | = | x1 + ... + xn + 1 | for all other symbols f of arity n |
none |
All dependency pairs have been removed.