We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
NotImplementedError
1 parent aa2901a commit e8cdeafCopy full SHA for e8cdeaf
1 file changed
src/flint/types/fmpz_mod_mpoly.pyx
@@ -1141,11 +1141,10 @@ cdef class fmpz_mod_mpoly(flint_mpoly):
1141
return list(stride), list(shift)
1142
1143
cdef _compose_gens_(self, ctx, slong *mapping):
1144
- if FLINT_RELEASE < 30200:
1145
- raise NotImplementedError(
1146
- "this function is not supported below FLINT 3.2.0, "
1147
- f"current version is {FLINT_VERSION}"
1148
- )
+ raise NotImplementedError(
+ "this function is not supported below FLINT 3.2.0, "
+ f"current version is {FLINT_VERSION}"
+ )
1149
1150
cdef fmpz_mod_mpoly res = create_fmpz_mod_mpoly(ctx)
1151
fmpz_mod_mpoly_compose_fmpz_mod_mpoly_gen(
0 commit comments