# HG changeset patch
# User mabshoff@sage.math.washington.edu
# Date 1225501688 25200
# Node ID a279baad0e6045de227b5f63347009085dc94832
# Parent 4556805d42dabdb112ec44ea915ffa723c0fd653
#4416: fix optional doctest failure in sage/rings/arith.py
diff -r 4556805d42da -r a279baad0e60 sage/rings/arith.py
|
a
|
b
|
|
| 194 | 194 | sage: vals = [[bernoulli(i,algorithm = j) for j in algs] for i in range(2256,5000)] #long time |
| 195 | 195 | sage: union([len(union(x))==1 for x in vals]) #long time |
| 196 | 196 | [True] |
| | 197 | |
| 197 | 198 | \note{If $n>50000$ then algorithm = 'gp' is used instead of |
| 198 | 199 | algorithm = 'pari', since the C-library interface to PARI |
| 199 | 200 | is limited in memory for individual operations.} |