You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fpylll enumeration supports GSO type long+longdouble mat_gso_long_ld, but throws an error because the right code is never reached because of the following issue:
The fpylll Enumeration dispatch is missing a case in this if statement: if self.M._type == mat_gso_mpz_ld:
should be if self.M._type == mat_gso_mpz_ld or self.M._type == mat_gso_long_ld:
fpylll enumeration supports GSO type long+longdouble
mat_gso_long_ld
, but throws an error because the right code is never reached because of the following issue:The fpylll Enumeration dispatch is missing a case in this
if
statement:if self.M._type == mat_gso_mpz_ld:
should be
if self.M._type == mat_gso_mpz_ld or self.M._type == mat_gso_long_ld:
fpylll/src/fpylll/fplll/enumeration.pyx
Line 389 in deb9c85
The text was updated successfully, but these errors were encountered: