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
This is working for FlipSignBridge since it just multiply by -1 but for a linear map that is not diagonal, we cannot set the starting values variable by variable.
We would need to cache the vector of starting values in the bridge and then do the linear map in final_touch.
Alternatively, this caching could be done by BridgeOptimizer to simplify the job of each bridge but that caching isn't needed for FlipSignBridge so it could be a waste.
The text was updated successfully, but these errors were encountered:
This is working for
FlipSignBridge
since it just multiply by-1
but for a linear map that is not diagonal, we cannot set the starting values variable by variable.MathOptInterface.jl/src/Bridges/Variable/set_map.jl
Lines 182 to 192 in 5025b50
We would need to cache the vector of starting values in the bridge and then do the linear map in
final_touch
.Alternatively, this caching could be done by
BridgeOptimizer
to simplify the job of each bridge but that caching isn't needed forFlipSignBridge
so it could be a waste.The text was updated successfully, but these errors were encountered: