summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--collectStokesData.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/collectStokesData.hpp b/collectStokesData.hpp
index 8b85d6b..50a43c5 100644
--- a/collectStokesData.hpp
+++ b/collectStokesData.hpp
@@ -43,7 +43,7 @@ void collectStokesData(std::string tag, unsigned N, Generator& r, Real ε, Real
while ((zSaddle - zMin).norm() < newSaddleThres * N || abs(imag(M.getHamiltonian(zSaddle))) < 1e-10) {
Vector<Complex> z0 = normalize(zSaddle + δz * randomVector<Complex>(N, d, r));
zSaddle = findSaddle(M, z0, ε);
- δz₀ *= 1.01;
+ δz *= 1.01;
}
Complex Hz;