You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the /test/decomposition_invariant.jl, when run the DICG standard run for ProbabilitySimplex oracle, if we specify the memory_mode as OutplaceEmphasis(), the starting point x0, which is obatined by compute_extrem_point(), will be ScaledHotVector() type.
In OutplaceEmphasis() mode, x0 will not be converted into SparseArrays but compute_extrem_point() and compute_inface_extrem_point() both require x to be SparseArrays. Therefore it throws error as !match.
Some kind of check and conversion might be necessary if it is OutplaceEmphasis() and starting point is not SparseArrays for ProbabilitySimplex oracle.
The text was updated successfully, but these errors were encountered:
In the /test/decomposition_invariant.jl, when run the DICG standard run for ProbabilitySimplex oracle, if we specify the memory_mode as OutplaceEmphasis(), the starting point x0, which is obatined by compute_extrem_point(), will be ScaledHotVector() type.
In OutplaceEmphasis() mode, x0 will not be converted into SparseArrays but compute_extrem_point() and compute_inface_extrem_point() both require x to be SparseArrays. Therefore it throws error as !match.
Some kind of check and conversion might be necessary if it is OutplaceEmphasis() and starting point is not SparseArrays for ProbabilitySimplex oracle.
The text was updated successfully, but these errors were encountered: