Skip to content

Commit f997a53

Browse files
committed
add some references
1 parent 52bd374 commit f997a53

2 files changed

Lines changed: 48 additions & 11 deletions

File tree

docs/src/assets/mpskit.bib

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,23 @@ @article{crotti2024
5959
keywords = {Condensed Matter - Disordered Systems and Neural Networks,Condensed Matter - Statistical Mechanics}
6060
}
6161

62+
@misc{dempsey2025,
63+
title = {Infinite Matrix Product States for \$(1+1)\$-Dimensional Gauge Theories},
64+
author = {Dempsey, Ross and Gl{\"u}ck, Anna-Maria E. and Pufu, Silviu S. and S{\o}gaard, Benjamin T.},
65+
year = 2025,
66+
month = aug,
67+
number = {arXiv:2508.16363},
68+
eprint = {2508.16363},
69+
primaryclass = {hep-th},
70+
publisher = {arXiv},
71+
doi = {10.48550/arXiv.2508.16363},
72+
url = {http://arxiv.org/abs/2508.16363},
73+
abstract = {We present a matrix product operator construction that allows us to represent the lattice Hamiltonians of (abelian or non-abelian) gauge theories in a local and manifestly translationinvariant form. In particular, we use symmetric matrix product states and introduce linkenhanced matrix product operators (LEMPOs) that can act on both the physical and virtual spaces of the matrix product states. This construction allows us to study Hamiltonian lattice gauge theories on infinite lattices. As examples, we show how to implement this method to study the massless and massive one-flavor Schwinger model and adjoint QCD2.},
74+
archiveprefix = {arXiv},
75+
langid = {english},
76+
keywords = {Condensed Matter - Strongly Correlated Electrons,High Energy Physics - Lattice,High Energy Physics - Theory}
77+
}
78+
6279
@article{devos2022,
6380
title = {Haldane Gap in the {{SU}}(3) [3 0 0] {{Heisenberg}} Chain},
6481
author = {Devos, Lukas and Vanderstraeten, Laurens and Verstraete, Frank},
@@ -165,6 +182,22 @@ @article{jeckelmann2002
165182
abstract = {A density-matrix renormalization-group (DMRG) method for calculating dynamical properties and excited states in low-dimensional lattice quantum many-body systems is presented. The method is based on an exact variational principle for dynamical correlation functions and the excited states contributing to them. This dynamical DMRG is an alternate formulation of the correction vector DMRG but is both simpler and more accurate. The finite-size scaling of spectral functions is discussed and a method for analyzing the scaling of dense spectra is described. The key idea of the method is a size-dependent broadening of the spectrum. The dynamical DMRG and the finite-size scaling analysis are demonstrated on the optical conductivity of the one-dimensional Peierls-Hubbard model. Comparisons with analytical results show that the spectral functions of infinite systems can be reproduced almost exactly with these techniques. The optical conductivity of the Mott-Peierls insulator is investigated and it is shown that its spectrum is qualitatively different from the simple spectra observed in Peierls (band) insulators and one-dimensional Mott-Hubbard insulators.}
166183
}
167184

185+
@misc{kirchner2025,
186+
title = {Phases of {{Interacting Fibonacci Anyons}} on a {{Ladder}} at {{Half-Filling}}},
187+
author = {Kirchner, Nico and Moessner, Roderich and Pollmann, Frank and {Gammon-Smith}, Adam},
188+
year = 2025,
189+
month = jul,
190+
number = {arXiv:2507.22115},
191+
eprint = {2507.22115},
192+
primaryclass = {cond-mat},
193+
publisher = {arXiv},
194+
doi = {10.48550/arXiv.2507.22115},
195+
url = {http://arxiv.org/abs/2507.22115},
196+
abstract = {Two-dimensional many-body quantum systems can exhibit topological order and support collective excitations with anyonic statistics different from the usual fermionic or bosonic ones. With the emergence of these exotic point-like particles, it is natural to ask what phases can arise in interacting many-anyon systems. To study this topic, we consider the particular case of Fibonacci anyons subject to an anyonic tight-binding model with nearest-neighbor repulsion on a two-leg ladder. Focusing on the case of half-filling, for low interaction strengths an ''anyonic'' metal is found, whereas for strong repulsion, the anyons form an insulating charge-density wave. Within the latter regime, we introduce an effective one-dimensional model up to sixth order in perturbation theory arising from anyonic superexchange processes. We numerically identify four distinct phases of the effective model, which we characterize using matrix product state methods. These include both the ferro- and antiferromagnetic golden chain, a \$\textbackslash mathbb\textbraceleft Z\textbraceright\_2\$ phase, and an incommensurate phase.},
197+
archiveprefix = {arXiv},
198+
keywords = {Condensed Matter - Strongly Correlated Electrons,Quantum Physics}
199+
}
200+
168201
@article{mortier2025,
169202
title = {Fermionic Tensor Network Methods},
170203
author = {Mortier, Quinten and Devos, Lukas and Burgelman, Lander and Vanhecke, Bram and Bultinck, Nick and Verstraete, Frank and Haegeman, Jutho and Vanderstraeten, Laurens},

src/algorithms/fixedpoint.jl

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,30 @@ Compute the fixedpoint of a linear operator `A` using the specified eigensolver
88
fixedpoint is assumed to be unique.
99
"""
1010
function fixedpoint(A, x₀, which::Symbol, alg::Lanczos)
11-
vals, vecs, info = eigsolve(A, x₀, 1, which, alg)
11+
A′, x₀′ = prepare_operator!!(A, x₀)
12+
vals, vecs, info = eigsolve(A′, x₀′, 1, which, alg)
1213

13-
if info.converged == 0
14+
info.converged == 0 &&
1415
@warnv 1 "fixedpoint not converged after $(info.numiter) iterations: normres = $(info.normres[1])"
15-
end
1616

17-
return vals[1], vecs[1]
17+
λ = vals[1]
18+
v = unprepare_operator!!(vecs[1], A, x₀)
19+
20+
return λ, v
1821
end
1922

2023
function fixedpoint(A, x₀, which::Symbol, alg::Arnoldi)
21-
TT, vecs, vals, info = schursolve(A, x₀, 1, which, alg)
24+
A′, x₀′ = prepare_operator!!(A, x₀)
25+
TT, vecs, vals, info = schursolve(A′, x₀′, 1, which, alg)
2226

23-
if info.converged == 0
27+
info.converged == 0 &&
2428
@warnv 1 "fixedpoint not converged after $(info.numiter) iterations: normres = $(info.normres[1])"
25-
end
26-
if size(TT, 2) > 1 && TT[2, 1] != 0
27-
@warnv 1 "non-unique fixedpoint detected"
28-
end
29+
size(TT, 2) > 1 && TT[2, 1] != 0 && @warnv 1 "non-unique fixedpoint detected"
30+
31+
λ = vals[1]
32+
v = unprepare_operator!!(vecs[1], A, x₀)
2933

30-
return vals[1], vecs[1]
34+
return λ, v
3135
end
3236

3337
function fixedpoint(A, x₀, which::Symbol; kwargs...)

0 commit comments

Comments
 (0)