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")
210
+
query[qfield] =hsh
211
+
else:
212
+
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")
213
+
193
214
#input string of complex character label and return rational character label
194
215
defq_char(char):
195
216
returnchar.rstrip(digits)
@@ -940,6 +961,16 @@ def group_jump(info):
940
961
flash_error(f"Transitive group {jump} is not in the database")
941
962
returnredirect(url_for(".index"))
942
963
returnredirect(url_for(".by_label", label=label))
964
+
#hash
965
+
hre=abstract_group_hash_regex.fullmatch(jump)
966
+
ifhre:
967
+
N, hsh= [ZZ(c) forcinhre.groups()]
968
+
ifN<=2000and (N<512orN.valuation(2) <7):
969
+
# Less useful here, since we mostly have group ids in this regime, but we include it for completeness
0 commit comments