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
raiseValueError(f"You cannot specify order both in the {order_field} input and the {qfield} input")
209
+
query[qfield] =hsh
210
+
else:
211
+
raiseValueError("To specify multiple hash values, all must have the same order; provide the order in the order input and then just give hashes separated by commas")
212
+
192
213
#input string of complex character label and return rational character label
193
214
defq_char(char):
194
215
returnchar.rstrip(digits)
@@ -939,6 +960,16 @@ def group_jump(info):
939
960
flash_error(f"Transitive group {jump} is not in the database")
940
961
returnredirect(url_for(".index"))
941
962
returnredirect(url_for(".by_label", label=label))
963
+
#hash
964
+
hre=abstract_group_hash_regex.fullmatch(jump)
965
+
ifhre:
966
+
N, hsh= [ZZ(c) forcinhre.groups()]
967
+
ifN<=2000and (N<512orN.valuation(2) <7):
968
+
# Less useful here, since we mostly have group ids in this regime, but we include it for completeness
0 commit comments