Skip to content

Commit 0dde0f9

Browse files
committed
increase gp's initial stacksize to 3*10^6 in a long test
1 parent 2400ee1 commit 0dde0f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sage/interfaces/gp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,7 @@ def _next_var_name(self):
615615
The vector of results is correctly resized when the stack has
616616
to be enlarged during this operation::
617617
618-
sage: g = Gp(stacksize=10^4,init_list_length=12000) # long time
618+
sage: g = Gp(stacksize=3*10^6,init_list_length=12000) # long time
619619
sage: for n in [1..13000]: # long time
620620
....: a = g(n)
621621
sage: g('length(sage)') # long time

0 commit comments

Comments
 (0)