# HG changeset patch
# User David Roe <roed@math.harvard.edu>
# Date 1207884441 14400
# Node ID e2a15557ede8915b82e1802434595d572d0af381
# Parent d063c34cef0be42ba5ac5ad40a692b1e25ce48c7
Changed eis_shift_a back to eis_shift.
diff -r d063c34cef0b -r e2a15557ede8 sage/rings/padics/pow_computer_ext.pyx
a
|
b
|
cdef class PowComputer_ZZ_pX_FM_Eis(PowC |
1293 | 1293 | sage_free(self.high_shifter) |
1294 | 1294 | |
1295 | 1295 | cdef int eis_shift(self, ZZ_pX_c* x, ZZ_pX_c* a, long n, long finalprec) except -1: |
1296 | | return ZZ_pX_eis_shift_a(self, x, a, n, finalprec) |
| 1296 | return ZZ_pX_eis_shift(self, x, a, n, finalprec) |
1297 | 1297 | |
1298 | 1298 | # ##print "starting..." |
1299 | 1299 | # cdef ZZ_pX_c low_part |
… |
… |
cdef class PowComputer_ZZ_pX_small_Eis(P |
1623 | 1623 | sage_free(self.high_shifter) |
1624 | 1624 | |
1625 | 1625 | cdef int eis_shift(self, ZZ_pX_c* x, ZZ_pX_c* a, long n, long finalprec) except -1: |
1626 | | return ZZ_pX_eis_shift_a(self, x, a, n, finalprec) |
| 1626 | return ZZ_pX_eis_shift(self, x, a, n, finalprec) |
1627 | 1627 | |
1628 | 1628 | cdef class PowComputer_ZZ_pX_big(PowComputer_ZZ_pX): |
1629 | 1629 | """ |
… |
… |
cdef class PowComputer_ZZ_pX_big_Eis(Pow |
1921 | 1921 | sage_free(self.high_shifter) |
1922 | 1922 | |
1923 | 1923 | cdef int eis_shift(self, ZZ_pX_c* x, ZZ_pX_c* a, long n, long finalprec) except -1: |
1924 | | return ZZ_pX_eis_shift_a(self, x, a, n, finalprec) |
| 1924 | return ZZ_pX_eis_shift(self, x, a, n, finalprec) |
1925 | 1925 | |
1926 | 1926 | def PowComputer_ext_maker(prime, cache_limit, prec_cap, ram_prec_cap, in_field, poly, prec_type = "small", ext_type = "u", shift_seed = None): |
1927 | 1927 | """ |