Skip to content

Commit

Permalink
Merge pull request #6097 from jwj61/morereps
Browse files Browse the repository at this point in the history
Show conjugacy class reps for more abstract groups
  • Loading branch information
roed314 authored Jun 22, 2024
2 parents d947bbf + 41aea07 commit e1c5f0e
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions lmfdb/groups/abstract/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2745,11 +2745,8 @@ def cc_data(gp, label, typ="complex", representative=None):
ans += "<br>Representative: id"
else:
gp_value = WebAbstractGroup(gp)
if gp_value.representations.get("Lie") and gp_value.representations["Lie"][0]["family"][0] == "P" and gp_value.order < 2000: #Problem with projective lie groups of order <2000
pass
else:
repn = gp_value.decode(wacc.representative, as_str=True)
ans += "<br>Representative: {}".format("$" + repn + "$")
repn = gp_value.decode(wacc.representative, as_str=True)
ans += "<br>Representative: {}".format("$" + repn + "$")
return Markup(ans)


Expand Down

0 comments on commit e1c5f0e

Please sign in to comment.