|
D.6.8.1 isTame
Procedure from library gmspoly.lib (see gmspoly_lib).
- Usage:
- isTame(f); poly f
- Assume:
- basering has no variables named w(1),w(2),...
- Return:
| int k=
0; if f is not tame
1; if f is tame
|
Example:
| LIB "gmspoly.lib";
ring R=0,(x,y),dp;
isTame(x2y+x);
==> 0
isTame(x3+y3+xy);
==> 1
|
|