-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Some more aliases and Artifact update (#16)
* Project.toml changes * Format alias * Some more prettyprinting updates * Add RepD6 alias * updates on prettyprinting * update exports * Update artifact * Update artifact path * Add update explanations to readme
- Loading branch information
Showing
7 changed files
with
91 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
[fusiondata] | ||
git-tree-sha1 = "a78aef5f0f8ab16826829569a14853251ec367ab" | ||
git-tree-sha1 = "28a4485085322175745017915ba6803fa87a5d3b" | ||
|
||
[[fusiondata.download]] | ||
url = "https://github.com/lkdvos/CategoryData.jl/archive/refs/tags/data-v0.1.1.tar.gz" | ||
sha256 = "b2749f171756f2a9b6799e00716411a5deff5dba4059b2a6a37a41b610eb5821" | ||
|
||
sha256 = "3c4cc655e6d173f4597b84edf18a2c9a1040407ad5e13ebc4a697a5aa69d3d76" | ||
url = "https://github.com/lkdvos/CategoryData.jl/archive/refs/tags/data-v0.1.2.tar.gz" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,38 @@ | ||
# Rep[Zₙ] ? Vec[Zₙ] | ||
const Z2 = PMFC{2,1,0,1,0,0} | ||
const RepS3 = PMFC{3,1,0,2,0,0} | ||
const Z3 = PMFC{3,1,2,1,0,0} | ||
const Z2xZ2 = PMFC{4,1,0,1,0,0} | ||
const RepD5 = PMFC{4,1,0,3,0,0} | ||
const Z4 = PMFC{4,1,2,1,0,0} | ||
const Z5 = PMFC{5,1,4,1,0,0} | ||
const Z6 = PMFC{6,1,4,1,0,0} | ||
|
||
const Z2xZ2 = PMFC{4,1,0,1,0,0} | ||
|
||
# Rep[Dₙ] | ||
const RepD3 = PMFC{3,1,0,2,0,0} | ||
const RepD4 = PMFC{5,1,0,1,3,0} | ||
const RepD5 = PMFC{4,1,0,3,0,0} | ||
const RepD6 = PMFC{6,1,0,2,0,0} | ||
const RepD7 = PMFC{5,1,0,4,0,0} | ||
|
||
# Vec[Dₙ] | ||
const VecD3 = UFC{6,1,2,1,0} | ||
|
||
# Rep[Sₙ] | ||
const RepS3 = RepD3 | ||
const RepS4 = PMFC{5,1,0,6,1,0} | ||
const Z5 = PMFC{5,1,4,1,0,0} | ||
const Z6 = PMFC{6,1,4,1,0,0} | ||
|
||
const H2 = UFC{6,1,2,8,2} | ||
const H3 = UFC{6,1,2,8,3} | ||
# Vec[Sₙ] | ||
const VecS3 = VecD3 | ||
|
||
# Haagerup | ||
@objectnames H1 = UFC{4,2,0,1,0} I μ η ν | ||
@objectnames H2 = UFC{6,1,2,8,2} I α α² ρ αρ α²ρ | ||
@objectnames H3 = UFC{6,1,2,8,3} I α α² ρ αρ α²ρ | ||
|
||
# Centers | ||
Base.getindex(::CenterTable, ::Type{VecS3}) = ZVecS3 | ||
@objectnames ZVecS3 = ZVecS3 A B C F G H D E | ||
|
||
# Varia | ||
@objectnames Fib = PMFC{2,1,0,2,0,0} I τ | ||
@objectnames Ising = PMFC{3,1,0,1,1,3} I ψ σ | ||
@objectnames H1 = UFC{4,2,0,1,0} I μ η ν | ||
@objectnames ZVecS3 = ZVecS3 A B C F G H D E |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters