|  |  D.4.16.5 makeIdeal Procedure from librarymodules.lib(see  modules_lib).
 
Example:Usage:
makeIdeal(i) or Ideal I=i; i ideal
Return:
Ideal with saved basering
 |  | LIB "modules.lib";
ring r;
ideal i=x,y,z+x;
i;
==> i[1]=x
==> i[2]=y
==> i[3]=x+z
Ideal I=i;
 | 
 
 |