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
I think we should implement exponential cone constraints: K_exp = {(x, y, z) | y > 0, y exp( x / y) <= z } U {(x, y, z) | x <= 0, y = 0, z >= 0}
After a quick look at [Parikh, Proximal Algorithms, p.184] it doesn't seem to be too difficult to implement. It would, however, allow us to solve a variety of new problems:
Uh oh!
There was an error while loading. Please reload this page.
I think we should implement exponential cone constraints:
K_exp = {(x, y, z) | y > 0, y exp( x / y) <= z } U {(x, y, z) | x <= 0, y = 0, z >= 0}
After a quick look at [Parikh, Proximal Algorithms, p.184] it doesn't seem to be too difficult to implement. It would, however, allow us to solve a variety of new problems:
t >= exp(x)
t <= log(x)
t <= - x log(x)
for more examples:
https://yalmip.github.io/tutorial/exponentialcone/
https://docs.mosek.com/modeling-cookbook/expo.html
The text was updated successfully, but these errors were encountered: