diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2021-11-23 13:11:05 +0100 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2021-11-23 13:11:05 +0100 |
commit | 1b892fe2ac1c49d691f5358bf7342bdcf2399c68 (patch) | |
tree | 1b1594953af63ef63205f2c65f281121b17cb884 | |
parent | f47dd594893995aa669de416f189676e7e97caba (diff) | |
download | code-1b892fe2ac1c49d691f5358bf7342bdcf2399c68.tar.gz code-1b892fe2ac1c49d691f5358bf7342bdcf2399c68.tar.bz2 code-1b892fe2ac1c49d691f5358bf7342bdcf2399c68.zip |
More iterations before stopping.
-rw-r--r-- | collectStokesData.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/collectStokesData.hpp b/collectStokesData.hpp index 9492b25..42500c0 100644 --- a/collectStokesData.hpp +++ b/collectStokesData.hpp @@ -6,7 +6,7 @@ using Complex = std::complex<Real>; template<int ...ps, class Generator, typename... T> void collectStokesData(std::string tag, unsigned N, Generator& r, double ε, double δz, bool minimum, T... μs) { - unsigned nIts = 5; + unsigned nIts = 7; unsigned nGs = 4; unsigned coDim = 16; Real newSaddleThres = 1e-4; |