From 1227d7bba8f6e25c99b93aa300b07918ecec2652 Mon Sep 17 00:00:00 2001 From: Jaron Kent-Dobias Date: Thu, 9 Dec 2021 14:57:58 +0100 Subject: Fixed a stupid bug. --- collectStokesData.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 z0 = normalize(zSaddle + δz * randomVector(N, d, r)); zSaddle = findSaddle(M, z0, ε); - δz₀ *= 1.01; + δz *= 1.01; } Complex Hz; -- cgit v1.2.3-54-g00ecf