Skip to content

Commit

Permalink
Change threshold for computing galois orbit
Browse files Browse the repository at this point in the history
  • Loading branch information
roed314 committed Aug 7, 2023
1 parent a9d8c46 commit 5b772b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lmfdb/characters/TinyConrey.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def galois_orbit(self, limit=31):
elif order < limit or order * order < limit * self.modulus:
logger.debug(f"compute all conjugate characters and return first {limit}")
return self.galois_orbit_all(limit)
elif limit == 1 or self.modulus < 30 * order:
elif limit == 1 or self.modulus <= 1000000:
logger.debug(f"compute {limit} first conjugate characters")
return self.galois_orbit_search(limit)
else:
Expand Down

0 comments on commit 5b772b7

Please sign in to comment.