Skip to content

Commit ce052c4

Browse files
committed
Style
1 parent bf0780f commit ce052c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/TensorNetworkGenerators/ising_network.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function sqrt_ising_bond(β; J = one(β), h = zero(β), deg1::Integer, deg2::Int
1212
exp* (-J - h1 + h2)) exp* (J - h1 - h2));
1313
]
1414
d, v = eigen(m)
15-
return v * sqrt(Diagonal(d)) * inv(v)
15+
return v * (Diagonal(d)) * inv(v)
1616
end
1717

1818
"""

0 commit comments

Comments
 (0)