From 58e62d50243bc45dbd4ae466642e801a1b46dd69 Mon Sep 17 00:00:00 2001 From: Jaron Kent-Dobias Date: Tue, 9 Nov 2021 17:59:53 +0100 Subject: Progress towards a systematized approach. --- dynamics.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dynamics.hpp') diff --git a/dynamics.hpp b/dynamics.hpp index 36b2dfa..4f33c1a 100644 --- a/dynamics.hpp +++ b/dynamics.hpp @@ -9,7 +9,7 @@ template Vector findMinimum(const pSpinModel& M, const Vector& z0, Real ε) { Vector z = z0; - Real λ = 10; + Real λ = 100; Real H; Vector dH; @@ -91,7 +91,7 @@ Vector randomMinimum(const pSpinModel& M, Distribution d, Gen bool foundSaddle = false; while (!foundSaddle) { - Vector z0 = normalize(randomVector(M.dimension(), d, r.engine())); + Vector z0 = normalize(randomVector(M.dimension(), d, r)); try { zSaddle = findMinimum(M, z0, ε); -- cgit v1.2.3-54-g00ecf