From 577e7b382d34ea6bf546cdefdb2b2b3ecb1eb8c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Designolle?= Date: Wed, 27 Nov 2024 19:43:23 +0100 Subject: [PATCH] Remove unnecessary compute_active_set_iterate! --- src/types.jl | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/types.jl b/src/types.jl index be931cd..2fc05b7 100755 --- a/src/types.jl +++ b/src/types.jl @@ -578,7 +578,6 @@ function load_active_set( weights = T2.(ass.weights) weights /= sum(weights) res = FrankWolfe.ActiveSetQuadraticProductCaching([(weights[i], deflate(atoms[i])) for i in eachindex(ass.weights)], I, deflate(p)) - FrankWolfe.compute_active_set_iterate!(res) return res end @@ -628,6 +627,5 @@ function load_active_set( weights = T2.(ass.weights) weights /= sum(weights) res = FrankWolfe.ActiveSetQuadraticProductCaching([(weights[i], deflate(atoms[i])) for i in eachindex(ass.weights)], I, deflate(p)) - FrankWolfe.compute_active_set_iterate!(res) return res end