3 lines
158 B
Text
3 lines
158 B
Text
pari_init(1<<20, 0); // Initialize PARI with a stack size of 1 MB.
|
|
GEN four = addii(gen_2, gen_2); // On the stack
|
|
GEN persist = gclone(four); // On the heap
|