Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Merge branch 'public/combinat/crystals/crystal_morphisms' of trac.sag…
Browse files Browse the repository at this point in the history
…emath.org:sage into public/combinat/crystals/crystal_morphisms
  • Loading branch information
Travis Scrimshaw committed Jul 13, 2015
2 parents c0a522b + cb16f86 commit f35e708
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions src/sage/combinat/crystals/subcrystal.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,14 +294,18 @@ def __lt__(self, other):
sage: A = crystals.KirillovReshetikhin(['C',2,1], 1,2).affinization()
sage: S = A.subcrystal(max_depth=2)
sage: sorted(S)
[[[1, 1], [2, 2]](0),
[[1, 1], [2, 3]](0),
[[1, 2], [2, 3]](0),
[[1, 1], [3, 3]](0),
[[1, 1], [2, 3]](1),
[[1, 2], [2, 3]](1),
[[1, 2], [3, 3]](1),
[[2, 2], [3, 3]](2)]
[[[1, 1]](-1),
[[1, 2]](-1),
[](0),
[[1, 1]](0),
[[1, 2]](0),
[[1, -2]](0),
[[2, 2]](0),
[](1),
[[2, -1]](1),
[[-2, -1]](1),
[[-1, -1]](1),
[[-1, -1]](2)]
"""
if not isinstance(other, Subcrystal.Element):
return False
Expand Down

0 comments on commit f35e708

Please sign in to comment.