Skip to content

Commit 48458ba

Browse files
committed
update quasiparticles
1 parent 2e05e6c commit 48458ba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/states/quasiparticle_state.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function LeftGaugedQP(
3939
)
4040
# find the left null spaces for the TNS
4141
excitation_space = Vect[typeof(sector)](sector => 1)
42-
VLs = convert(Vector, map(leftnull, left_gs.AL))
42+
VLs = convert(Vector, map(left_null, left_gs.AL))
4343
Xs = map(enumerate(VLs)) do (loc, vl)
4444
x = similar(
4545
vl,
@@ -73,7 +73,7 @@ function RightGaugedQP(
7373
)
7474
# find the left null spaces for the TNS
7575
excitation_space = Vect[typeof(sector)](sector => 1)
76-
VRs = convert(Vector, map(rightnull! _transpose_tail, right_gs.AR))
76+
VRs = convert(Vector, map(right_null! _transpose_tail, right_gs.AR))
7777
Xs = map(enumerate(VRs)) do (i, vr)
7878
x = similar(
7979
vr,
@@ -309,7 +309,7 @@ function Base.convert(::Type{<:FiniteMPS}, v::QP{S}) where {S <: FiniteMPS}
309309
ou = oneunit(utl)
310310
utsp = ou ou
311311
upper = isometry(storagetype(site_type(v.left_gs)), utsp, ou)
312-
lower = leftnull(upper)
312+
lower = left_null(upper)
313313
upper_I = upper * upper'
314314
lower_I = lower * lower'
315315
uplow_I = upper * lower'

0 commit comments

Comments
 (0)