Skip to content

Commit

Permalink
WIP5: random guessing. This is crazy
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin committed Jul 26, 2023
1 parent 3f291ef commit dffb284
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sage/libs/gap/element.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ cdef Obj make_gap_list(sage_list) except NULL:
cdef GapElement elem
try:
GAP_Enter()
l = libgap(GAP_NewPlist(0))
l = make_GapElement_List(libgap, GAP_NewPlist(0))
finally:
GAP_Leave()

Expand Down Expand Up @@ -88,7 +88,7 @@ cdef Obj make_gap_matrix(sage_list, gap_ring) except NULL:
cdef GapElement one
try:
GAP_Enter()
l = libgap(GAP_NewPlist(0))
l = make_GapElement_List(libgap, GAP_NewPlist(0))
finally:
GAP_Leave()

Expand Down

0 comments on commit dffb284

Please sign in to comment.