From ee25ec79736d0c4aa6b8ac242c560fe4defe8eee Mon Sep 17 00:00:00 2001 From: Miles Lubin Date: Sat, 23 Oct 2021 13:51:59 -0400 Subject: [PATCH] Correctly set rho_estimate Fixes #99 --- src/types.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.jl b/src/types.jl index 088b83f..254b33e 100644 --- a/src/types.jl +++ b/src/types.jl @@ -243,7 +243,7 @@ function copyto!(info::Info, cinfo::CInfo) info.polish_time = cinfo.polish_time info.run_time = cinfo.run_time info.rho_updates = cinfo.rho_updates - info.rho_estimate + info.rho_estimate = cinfo.rho_estimate info end