From 8448a39ca1dc5a5a380d924abadc98464eccff70 Mon Sep 17 00:00:00 2001 From: "Z J Wegert (Workstation)" Date: Thu, 12 Dec 2024 17:11:18 +1000 Subject: [PATCH] fix 2 --- src/LevelSetEvolution/UnfittedEvolution/StabilisedReinit.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LevelSetEvolution/UnfittedEvolution/StabilisedReinit.jl b/src/LevelSetEvolution/UnfittedEvolution/StabilisedReinit.jl index ed204f95..4e0c5867 100644 --- a/src/LevelSetEvolution/UnfittedEvolution/StabilisedReinit.jl +++ b/src/LevelSetEvolution/UnfittedEvolution/StabilisedReinit.jl @@ -80,7 +80,7 @@ function solve!(s::StabilisedReinit,φh,cache::Nothing) s.cache = (;nls_cache,φ_tmp) # Solve solve!(get_free_dof_values(φh),nls,op,nls_cache) - copy!(φ_tmp,get_free_dof_values(φ)) + copy!(φ_tmp,φ) update_collection!(s.Ωs,φh) # TODO: remove? return φh end