Skip to content

Commit a8972bd

Browse files
committed
bump version
1 parent 10eee46 commit a8972bd

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-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.9"
4+
version = "0.5.10"
55

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

test/test_linear_algebra.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,10 @@ include("setup.jl")
2828
@test norm(ft) 3 / 2
2929
@test isapprox(tr(ft), 0; atol=eps(Float64))
3030

31-
@test norm(normalize(ft)) 1.0
31+
ft2 = normalize(ft)
32+
@test norm(ft2) 1.0
3233
@test norm(ft) 3 / 2 # unaffected by normalize
34+
@test ft 3 / 2 * ft2
3335
normalize!(ft)
3436
@test norm(ft) 1.0
3537
end

0 commit comments

Comments
 (0)