Skip to content

Commit 48cccb7

Browse files
committed
small changes to avoid accidental diagonal tensors
1 parent ac5c2a0 commit 48cccb7

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

test/setup.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,14 +179,14 @@ fast_sectorlist = (Z2Irrep, SU2Irrep, FermionParity ⊠ U1Irrep ⊠ SU2Irrep, Fi
179179
# spaces
180180
Vtr = (ℂ^2, (ℂ^3)', ℂ^4, ℂ^3, (ℂ^2)')
181181
Vℤ₂ = (
182-
Vect[Z2Irrep](0 => 1, 1 => 1),
182+
Vect[Z2Irrep](0 => 2, 1 => 1),
183183
Vect[Z2Irrep](0 => 1, 1 => 2)',
184184
Vect[Z2Irrep](0 => 3, 1 => 2)',
185185
Vect[Z2Irrep](0 => 2, 1 => 3),
186186
Vect[Z2Irrep](0 => 2, 1 => 5),
187187
)
188188
Vfℤ₂ = (
189-
Vect[FermionParity](0 => 1, 1 => 1),
189+
Vect[FermionParity](0 => 2, 1 => 1),
190190
Vect[FermionParity](0 => 1, 1 => 2)',
191191
Vect[FermionParity](0 => 2, 1 => 1)',
192192
Vect[FermionParity](0 => 2, 1 => 3),

test/tensors/factorizations.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ using MatrixAlgebraKit: diagview
55

66

77
spacelist = if fast_tests
8-
(Vtr, Vℤ, VSU₂)
8+
(Vtr, Vℤ, VSU₂)
99
elseif get(ENV, "CI", "false") == "true"
1010
println("Detected running on CI")
1111
if Sys.iswindows()

test/tensors/tensors.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ using LinearAlgebra: LinearAlgebra
66

77

88
spacelist = if fast_tests
9-
(Vtr, Vℤ, VSU₂)
9+
(Vtr, Vℤ, VSU₂)
1010
elseif get(ENV, "CI", "false") == "true"
1111
println("Detected running on CI")
1212
if Sys.iswindows()

0 commit comments

Comments
 (0)