From ad7204eb3a627ea3d432a2c551ee747a6612ad6b Mon Sep 17 00:00:00 2001 From: ysyapa Date: Sat, 19 Aug 2023 00:33:39 +0000 Subject: [PATCH] Bug fix --- irrep.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irrep.jl b/irrep.jl index cb2bd8c..66def85 100644 --- a/irrep.jl +++ b/irrep.jl @@ -36,7 +36,7 @@ function calculate_A1_data(N::Int) unique_i = unique(labels) multiplicity = countmap(labels) - unique_point = transpose(lattice[unique_i, :]) + unique_point = transpose(lattice[:, unique_i]) return unique_i, unique_point, multiplicity end