From 6609181a89d816bba1cfdf389bdcb24274f3f42b Mon Sep 17 00:00:00 2001 From: leburgel Date: Thu, 19 Mar 2026 10:22:39 +0100 Subject: [PATCH] Fix stackoverflow in `renormalize_southwest_corner` --- src/algorithms/contractions/ctmrg/renormalize_corner.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/algorithms/contractions/ctmrg/renormalize_corner.jl b/src/algorithms/contractions/ctmrg/renormalize_corner.jl index 9a0d80ad6..615451b9f 100644 --- a/src/algorithms/contractions/ctmrg/renormalize_corner.jl +++ b/src/algorithms/contractions/ctmrg/renormalize_corner.jl @@ -345,7 +345,7 @@ end function renormalize_southwest_corner( quadrant::AbstractTensorMap{T, S, N, N}, P_left, P_right ) where {T, S, N} - return renormalize_southwest_corner(quadrant, P_left, P_right) + return renormalize_corner(quadrant, P_left, P_right) end function renormalize_southwest_corner( E_south, C_southwest, E_west, P_left, P_right, A::PEPSSandwich