From c787567b2a09a41062c29f363f40905a9e4f3e1f Mon Sep 17 00:00:00 2001 From: leburgel Date: Thu, 16 Jan 2025 14:20:36 +0100 Subject: [PATCH] Switch to `Defaults.alg_eigsolve` interface --- src/states/ortho.jl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/states/ortho.jl b/src/states/ortho.jl index 3831ef015..68c91d867 100644 --- a/src/states/ortho.jl +++ b/src/states/ortho.jl @@ -1,8 +1,7 @@ # Algorithms # ---------- -const _GAUGE_ALG_EIGSOLVE = DynamicTol(Arnoldi(; krylovdim=30, eager=true), - Defaults.tolgauge / 10, Defaults.tol_max, 1) +const _GAUGE_ALG_EIGSOLVE = Defaults.alg_eigsolve(; ishermitian=false, tol_factor=1) """ struct LeftCanonical <: Algorithm