@@ -227,46 +227,6 @@ cdef class fmpz_mpoly_ctx(flint_mpoly_context):
227
227
return res
228
228
229
229
230
- def coerce_fmpz_mpolys (args ):
231
- cdef:
232
- fmpz_mpoly_ctx ctx
233
- fmpz_mpoly inpoly, outpoly
234
- slong * C
235
- slong i
236
-
237
- if not args:
238
- return ctx, []
239
-
240
- # If all arguments are fmpz_mpolys and share the same context then nothing needs to be done
241
- if typecheck(args[0 ], fmpz_mpoly):
242
- ctx = (< fmpz_mpoly> args[0 ]).ctx
243
- if all (typecheck(args[i], fmpz_mpoly) and (< fmpz_mpoly> args[i]).ctx is ctx for i in range (1 , len (args))):
244
- return ctx, list (args)
245
-
246
- for i in range (len (args)):
247
- if not typecheck(args[i], fmpz_mpoly):
248
- args[i] = fmpz_mpoly(args[i])
249
-
250
- ctx, vars = fmpz_mpoly_ctx.joint_context((< fmpz_mpoly> inpoly).ctx for inpoly in args)
251
-
252
- out = [fmpz_mpoly.__new__ (fmpz_mpoly) for _ in range (len (args))]
253
-
254
- nvars = max ((< fmpz_mpoly> inpoly).ctx.nvars() for inpoly in args)
255
- C = < slong * > libc.stdlib.malloc(nvars * sizeof(slong * ))
256
- for inpoly, outpoly in zip (args, out):
257
- inpoly = < fmpz_mpoly> inpoly
258
- outpoly = < fmpz_mpoly> outpoly
259
-
260
- init_fmpz_mpoly(outpoly, ctx)
261
- for i, var in enumerate (inpoly.ctx.py_names):
262
- C[i] = < slong> vars [var]
263
-
264
- fmpz_mpoly_compose_fmpz_mpoly_gen(outpoly.val, inpoly.val, C, inpoly.ctx.val, ctx.val)
265
-
266
- libc.stdlib.free(C)
267
- return ctx, out
268
-
269
-
270
230
cdef class fmpz_mpoly(flint_mpoly):
271
231
"""
272
232
The *fmpz_poly* type represents sparse multivariate polynomials over
@@ -878,3 +838,28 @@ cdef class fmpz_mpoly(flint_mpoly):
878
838
fmpz_set((< fmpz> c).val, fac.constant)
879
839
fmpz_mpoly_factor_clear(fac, self .ctx.val)
880
840
return c, res
841
+
842
+ def coerce_to_context (self , ctx ):
843
+ cdef:
844
+ fmpz_mpoly outpoly
845
+ slong * C
846
+ slong i
847
+
848
+ if not typecheck(ctx, fmpz_mpoly_ctx):
849
+ raise ValueError (" provided context is not a fmpz_mpoly_ctx" )
850
+
851
+ if self .ctx is ctx:
852
+ return self
853
+
854
+ C = < slong * > libc.stdlib.malloc(self .ctx.val.minfo.nvars * sizeof(slong * ))
855
+ outpoly = fmpz_mpoly.__new__ (fmpz_mpoly)
856
+ init_fmpz_mpoly(outpoly, ctx)
857
+
858
+ vars = {x: i for i, x in enumerate (ctx.py_names)}
859
+ for i, var in enumerate (self .ctx.py_names):
860
+ C[i] = < slong> vars [var]
861
+
862
+ fmpz_mpoly_compose_fmpz_mpoly_gen(outpoly.val, self .val, C, self .ctx.val, (< fmpz_mpoly_ctx> ctx).val)
863
+
864
+ libc.stdlib.free(C)
865
+ return outpoly
0 commit comments