Skip to content

Commit

Permalink
Fixing path
Browse files Browse the repository at this point in the history
  • Loading branch information
JCBridgeman authored Mar 13, 2024
1 parent 45f886b commit 1d721c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/categories.jl
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,6 @@ struct ZVecD4 <: BraidedCategory end
rank(::Type{ZVecD4}) = 22
multiplicity(::Type{ZVecD4}) = 1
selfduality(::Type{ZVecD4}) = 22
N_artifact(::Type{ZVecD4}) = joinpath("./data/", "Nsymbols", "ZVecD4.txt")
F_artifact(::Type{ZVecD4}) = joinpath("./data/", "Fsymbols", "ZVecD4.txt")
R_artifact(::Type{ZVecD4}) = joinpath("./data/", "Rsymbols", "ZVecD4.txt")
N_artifact(::Type{ZVecD4}) = joinpath(artifact_path, "Nsymbols", "ZVecD4.txt")
F_artifact(::Type{ZVecD4}) = joinpath(artifact_path, "Fsymbols", "ZVecD4.txt")
R_artifact(::Type{ZVecD4}) = joinpath(artifact_path, "Rsymbols", "ZVecD4.txt")

0 comments on commit 1d721c4

Please sign in to comment.