how to use 32 bit or 64 bit exponents?(default seems 16 Bit)
jakobkroeker · Fri Mar 03, 2017 11:19 pm
It seems, that Singular by default uses 16 Bit exponents:
Can this be changed (e.g. to 32 Bit or 64 Bit)?
How?
Code:
ring rng = 0,(x,y),dp;
short = 0;
poly h = x^32768;
// ? OVERFLOW in power(d=1, e=32768, max=32767)
short = 0;
poly h = x^32768;
// ? OVERFLOW in power(d=1, e=32768, max=32767)
Can this be changed (e.g. to 32 Bit or 64 Bit)?
How?