# HG changeset patch
# User mabshoff@sage.math.washington.edu
# Date 1207875031 25200
# Node ID 8ebd90d288d26cc88dd727ffc3fef2e26c1b04ac
# Parent 15b12687a83a189aee906c3e2127af641646940c
Compile fix for the previous patch
diff -r 15b12687a83a -r 8ebd90d288d2 sage/rings/padics/pow_computer_ext.pyx
a
|
b
|
cdef int ZZ_pX_Eis_init(PowComputer_ZZ_p |
244 | 244 | ZZ_pX_construct(&(high_shifter_p[i])) |
245 | 245 | high_shifter_p[i] = into_multiplier |
246 | 246 | |
247 | | cdef int ZZ_pX_eis_shift(PowComputer_ZZ_pX self, ZZ_pX_c* x, ZZ_pX_c* a, long n, long finalprec) except -1: |
| 247 | cdef int ZZ_pX_eis_shift_a(PowComputer_ZZ_pX self, ZZ_pX_c* x, ZZ_pX_c* a, long n, long finalprec) except -1: |
248 | 248 | """ |
249 | 249 | Eis-shifts a over by n and puts the result into x. |
250 | 250 | |