File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1530,7 +1530,7 @@ cdef class Gen(Gen_base):
1530
1530
raise IndexError (" column j(=%s ) must be between 0 and %s " % (j, self .ncols()- 1 ))
1531
1531
1532
1532
self .cache((i,j), x)
1533
- xt = x.ref_target ()
1533
+ xt = x.fixGEN ()
1534
1534
set_gcoeff(self .g, i+ 1 , j+ 1 , xt)
1535
1535
return
1536
1536
@@ -1554,7 +1554,7 @@ cdef class Gen(Gen_base):
1554
1554
raise IndexError (" index (%s ) must be between 0 and %s " % (i, glength(self .g)- 1 ))
1555
1555
1556
1556
self .cache(i, x)
1557
- xt = x.ref_target ()
1557
+ xt = x.fixGEN ()
1558
1558
if typ(self .g) == t_LIST:
1559
1559
listput(self .g, xt, i+ 1 )
1560
1560
else :
Original file line number Diff line number Diff line change @@ -1302,7 +1302,7 @@ cdef class Pari(Pari_auto):
1302
1302
for j in range (n):
1303
1303
sig_check()
1304
1304
x = objtogen(entries[k])
1305
- set_gcoeff(A.g, i+ 1 , j+ 1 , x.ref_target ())
1305
+ set_gcoeff(A.g, i+ 1 , j+ 1 , x.fixGEN ())
1306
1306
A.cache((i,j), x)
1307
1307
k += 1
1308
1308
return A
@@ -1318,7 +1318,7 @@ cdef class Pari(Pari_auto):
1318
1318
1319
1319
If the second argument `p` is specified, it must be a prime.
1320
1320
Then only the local information at `p` is computed and returned.
1321
-
1321
+
1322
1322
Examples:
1323
1323
1324
1324
>>> import cypari2
You can’t perform that action at this time.
0 commit comments