Skip to content

Commit

Permalink
Fix load_active_set for multi-outcome
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiendesignolle committed Oct 17, 2024
1 parent 4468a20 commit 0997112
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types.jl
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ function load_active_set(
end
weights = T2.(ass.weights)
weights /= sum(weights)
res = FrankWolfe.ActiveSetQuadratic([(weights[i], reduce(atoms[i])) for i in eachindex(ass.weights)], I, p)
res = FrankWolfe.ActiveSetQuadratic([(weights[i], reduce(atoms[i])) for i in eachindex(ass.weights)], I, reduce(p))
FrankWolfe.compute_active_set_iterate!(res)
return res
end

0 comments on commit 0997112

Please sign in to comment.