From 375f14db37d59b645f1f75a343e348974c30e555 Mon Sep 17 00:00:00 2001 From: Maxime Vorwerk Date: Tue, 29 Aug 2023 16:17:30 +0200 Subject: [PATCH] removed wrong type from Rotations --- julia/Rotations.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/julia/Rotations.jl b/julia/Rotations.jl index e685c68..7a9caae 100644 --- a/julia/Rotations.jl +++ b/julia/Rotations.jl @@ -31,7 +31,7 @@ const global _rot22(x)::Tuple{Int64, Int64, Int64} = (-x[3], -x[2], -x[1]) const global _rot23(x)::Tuple{Int64, Int64, Int64} = (-x[2], -x[1], -x[3]) const global _rot24(x)::Tuple{Int64, Int64, Int64} = (-x[1], -x[3], -x[2]) -const global Rotations::Vector{Tuple{Int64, Int64, Int64}} = [ +const global Rotations = [ _rot01, _rot02, _rot03,