From dc552e937648b52cfdc5c605912202f6479d2a0a Mon Sep 17 00:00:00 2001 From: Jutho Date: Fri, 5 Jan 2024 08:56:36 +0100 Subject: [PATCH] update Project.toml and fix rebase result --- Project.toml | 2 +- test/planar.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index fc0c157c..6af92733 100644 --- a/Project.toml +++ b/Project.toml @@ -19,7 +19,7 @@ HalfIntegers = "1" LRUCache = "1.0.2" PackageExtensionCompat = "1" Strided = "2" -TensorOperations = "4.0.6 - 4.0.7" +TensorOperations = "4.1" TupleTools = "1.1" VectorInterface = "0.4" WignerSymbols = "1,2" diff --git a/test/planar.jl b/test/planar.jl index 0ba74faa..d7edf146 100644 --- a/test/planar.jl +++ b/test/planar.jl @@ -89,7 +89,7 @@ end @planar C1[i; j] := A[i; k l] * τ[k l; m n] * B[m n; j] @planar contractcheck = true C2[i; j] := A[i; k l] * τ[k l; m n] * B[m n; j] @test C1 ≈ C2 - @test_throws SpaceMismatch("incompatible spaces for l: $V ≠ $(V')") begin + @test_throws SpaceMismatch("incompatible spaces for m: $V ≠ $(V')") begin @planar contractcheck = true C3[i; j] := A[i; k l] * τ[k l; m n] * B[n j; m] end end