Skip to content

Commit a241131

Browse files
authored
Skip testing some matrix functions (#82)
1 parent 1f73b5f commit a241131

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "FusionTensors"
22
uuid = "e16ca583-1f51-4df0-8e12-57d32947d33e"
33
authors = ["ITensor developers <[email protected]> and contributors"]
4-
version = "0.5.12"
4+
version = "0.5.13"
55

66
[deps]
77
Accessors = "7d9f7c33-5ae7-4f3b-8dc6-eff91059b697"

test/test_contraction.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ end
6464
t = reshape(sds22, (2, 2, 2, 2))
6565
g2 = gradedrange([SU2(1 // 2) => 1])
6666
ft = to_fusiontensor(t, (g2, g2), (dual(g2), dual(g2)))
67-
for f in setdiff(FusionTensors.MATRIX_FUNCTIONS, [:acoth, :cbrt])
67+
MATRIX_FUNCTIONS_SKIP = [:acos, :acosh, :acoth, :acsc, :asec, :asech, :asin, :cbrt]
68+
for f in setdiff(FusionTensors.MATRIX_FUNCTIONS, MATRIX_FUNCTIONS_SKIP)
6869
t2 = reshape((@eval Base.$f)(sds22), (2, 2, 2, 2))
6970
ft2 = to_fusiontensor(t2, (g2, g2), (dual(g2), dual(g2)))
7071
@test (@eval TensorAlgebra.$f)(ft, (1, 2, 3, 4), (1, 2), (3, 4)) ft2

0 commit comments

Comments
 (0)