Skip to content

Commit 747ec8e

Browse files
Rename bondenv_fu to bondenv_ctm (#343)
1 parent 7ceb4a3 commit 747ec8e

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/algorithms/contractions/bondenv/benv_ctm.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Axis order: `[DX1 DY1; DX0 DY0]`, as in
2121
└---------------------┘
2222
```
2323
"""
24-
function bondenv_fu(row::Int, col::Int, X::PEPSOrth, Y::PEPSOrth, env::CTMRGEnv)
24+
function bondenv_ctm(row::Int, col::Int, X::PEPSOrth, Y::PEPSOrth, env::CTMRGEnv)
2525
Nr, Nc = size(env.corners)[[2, 3]]
2626
cm1 = _prev(col, Nc)
2727
cp1 = _next(col, Nc)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ for row in 1:Nr, col in 1:Nc
3131
cp1 = PEPSKit._next(col, Nc)
3232
A, B = peps.A[row, col], peps.A[row, cp1]
3333
X, a, b, Y = PEPSKit._qr_bond(A, B)
34-
benv = PEPSKit.bondenv_fu(row, col, X, Y, env)
34+
benv = PEPSKit.bondenv_ctm(row, col, X, Y, env)
3535
@assert [isdual(space(benv, ax)) for ax in 1:numind(benv)] == [0, 0, 1, 1]
3636
Z = PEPSKit.positive_approx(benv)
3737
# verify that gauge fixing can greatly reduce

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ end
8888
include("bondenv/benv_gaugefix.jl")
8989
end
9090
@time @safetestset "Full update bond environment" begin
91-
include("bondenv/benv_fu.jl")
91+
include("bondenv/benv_ctm.jl")
9292
end
9393
end
9494
if GROUP == "ALL" || GROUP == "TIMEEVOL"

0 commit comments

Comments
 (0)