|  |  D.2.11.17 hasNumericCoeffs Procedure from libraryring.lib(see  ring_lib).
 
Example:Usage:
hasNumericCoeffs ( rng );
Return:
1 if rng has inexact coefficcients, 0 otherwise.
 |  | LIB "ring.lib";
ring r1 = integer,x,dp;
hasNumericCoeffs(r1);
==> 0
ring r2 = complex,x,dp;
hasNumericCoeffs(r2);
==> 1
 | 
 
 |