diff options
| author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-19 17:32:04 -0300 | 
|---|---|---|
| committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-19 17:32:04 -0300 | 
| commit | a78e71298732b320c0d8fc471d4e41c0727e8146 (patch) | |
| tree | b775fda1d1be7f8146f73303e296a7c393ad5d7a | |
| parent | c4170a22fad507b2aef0f213b6f1fc0a2c973195 (diff) | |
| download | code-a78e71298732b320c0d8fc471d4e41c0727e8146.tar.gz code-a78e71298732b320c0d8fc471d4e41c0727e8146.tar.bz2 code-a78e71298732b320c0d8fc471d4e41c0727e8146.zip | |
Trying new approach
| -rw-r--r-- | log-fourier_integrator.cpp | 5 | 
1 files changed, 1 insertions, 4 deletions
| diff --git a/log-fourier_integrator.cpp b/log-fourier_integrator.cpp index c572364..ad75400 100644 --- a/log-fourier_integrator.cpp +++ b/log-fourier_integrator.cpp @@ -156,10 +156,7 @@ int main(int argc, char* argv[]) {          Rₜ = Rₜ₋₁;          Ĉₜ = Ĉₜ₋₁;          Ȓₜ = Ȓₜ₋₁; -        β -= Δβ; -        Δβ /= 2; -        μ₁ = 0; -        μ₂ = 0; +        μ *= 2;        } else {        if (pow(Cₜ[0] - 1, 2) < ε) {          break; | 
