From eb2cfce99694684ef6de9fe7c78a66d6e58b3044 Mon Sep 17 00:00:00 2001 From: Valentin Boettcher Date: Fri, 1 Apr 2022 09:01:36 +0200 Subject: [PATCH] make it int :P --- .../07_one_bath_systematics/scripts/integrate_slip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/energy_flow_proper/07_one_bath_systematics/scripts/integrate_slip.py b/python/energy_flow_proper/07_one_bath_systematics/scripts/integrate_slip.py index 749ef35..4ac3277 100644 --- a/python/energy_flow_proper/07_one_bath_systematics/scripts/integrate_slip.py +++ b/python/energy_flow_proper/07_one_bath_systematics/scripts/integrate_slip.py @@ -53,7 +53,7 @@ k_models = [ ψ_0=qt.basis([2], [0]), description=f"Find out the convergence behaviour wrt the influence tolerance.", resolution=0.01, - k_max=k, + k_max=int(k), truncation_scheme="simplex", driving_process_tolerance=StocProcTolerances(1e-6, 1e-6) )