Skip to content

Commit 90e2ba9

Browse files
committed
remove aliases for N < 4
1 parent 77dda09 commit 90e2ba9

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

src/TensorKitSectors.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export triangle_equation, pentagon_equation, hexagon_equation
2121
export Trivial
2222
export Z2Irrep, Z3Irrep, Z4Irrep, ZNIrrep, LargeZNIrrep, U1Irrep
2323
export D3Irrep, D4Irrep, DNIrrep, CU1Irrep
24-
export ANIrrep, A2Irrep, A3Irrep, A4Irrep
24+
export ANIrrep, A4Irrep
2525
export SU2Irrep
2626
export ZNElement, Z2Element, Z3Element, Z4Element
2727
export ProductSector, TimeReversed
@@ -36,7 +36,7 @@ export charge, modulus
3636
# ---------------
3737
export , , ×
3838
export Cyclic, ℤ, ℤ₂, ℤ₃, ℤ₄, U₁, SU, SU₂, Dihedral, D₃, D₄, CU₁
39-
export Alternating, A₂, A₃, A
39+
export Alternating, A₄
4040
export fℤ₂, fU₁, fSU₂
4141

4242
# public

src/groups.jl

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,6 @@ const ℤ₃ = ℤ{3}
8080
const ℤ₄ = ℤ{4}
8181
const D₃ = Dihedral{3}
8282
const D₄ = Dihedral{4}
83-
const A₂ = Alternating{2}
84-
const A₃ = Alternating{3}
8583
const A₄ = Alternating{4}
8684
const SU₂ = SU{2}
8785

@@ -91,8 +89,6 @@ type_repr(::Type{ℤ₄}) = "ℤ₄"
9189
type_repr(::Type{ℤ{N}}) where {N} = "ℤ{$N}"
9290
type_repr(::Type{D₃}) = "D₃"
9391
type_repr(::Type{D₄}) = "D₄"
94-
type_repr(::Type{A₂}) = "A₂"
95-
type_repr(::Type{A₃}) = "A₃"
9692
type_repr(::Type{A₄}) = "A₄"
9793
type_repr(::Type{SU₂}) = "SU₂"
9894
type_repr(::Type{U₁}) = "U₁"

src/irreps/anirrep.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,6 @@ Base.convert(::Type{ANIrrep{N}}, n::Integer) where {N} = ANIrrep{N}(n)
5252

5353
Base.getindex(::IrrepTable, ::Type{Alternating{N}}) where {N} = ANIrrep{N}
5454

55-
const A2Irrep = ANIrrep{2} # trivial
56-
const A3Irrep = ANIrrep{3} # Z3
5755
const A4Irrep = ANIrrep{4}
5856

5957
function Base.show(io::IO, a::ANIrrep)

0 commit comments

Comments
 (0)