Skip to content

Commit

Permalink
Remove restriction on lie groups
Browse files Browse the repository at this point in the history
  • Loading branch information
jwj61 committed May 15, 2024
1 parent e3aea71 commit 79e7dea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lmfdb/galois_groups/transitive_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ def wag(self):
return WebAbstractGroup(self.abstract_label())

def have_isomorphism(self):
if self.wag.element_repr_type == "Lie":
return False
#if self.wag.element_repr_type == "Lie":
# return False
return 'isomorphism' in self._data

@lazy_attribute
Expand Down Expand Up @@ -196,7 +196,7 @@ def conjclasses(self):
if int(n) == 1:
self.conjugacy_classes[0].force_repr('()')
return [['()', 1, 1, '1', '1A']]
elif self.have_isomorphism() and wag.element_repr_type != "Lie":
elif self.have_isomorphism():
isom = self.getisom
cc = [z.representative for z in self.conjugacy_classes]
cc1 = [wag.decode(z) for z in cc]
Expand Down

0 comments on commit 79e7dea

Please sign in to comment.