-
Notifications
You must be signed in to change notification settings - Fork 120
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sum of powers #90
Comments
Definitely, it's in the works. The next step is to add a new kind of conic This does raise an interesting question about whether / how to use the fact On Sat, Jun 27, 2015 at 11:16 AM, Ganesh Ajjanagadde <
Madeleine Udell |
@mlubin and I were talking about how there will be a decision between using the power cone formulation or the SOCP formulation. The power cone formulation would typically be smaller, but only SCS supports power cones, though many solvers support SOCs. Perhaps there could be a new option for translating into power cones versus SOCs. |
Good point. Is that a piece of functionality that we should put in On Fri, May 27, 2016 at 10:02 AM, Chris C. notifications@github.com wrote:
Madeleine Udell |
Modeling layer, since SOC solvers are not responsible for supporting power
|
Yeah. Though I think perhaps the ultimate goal is to encourage more conic solvers themselves to support a wider range of cones including these unsymmetric power cones. |
Now that #590 is merged, this issue can be resolved by adding support for atoms that create the various |
Closing in favor of #297 since this is really the same thing: add various power cone atoms. |
I am interested in maximizing a sum of powers p_i^a subject to some affine equality and inequality constraints, where a < 1. Note that this function is concave, i.e its negative is convex.
However, checking http://convexjl.readthedocs.org/en/latest/operations.html shows that my closest candidates are norm(x, p) (requires p >= 1) and sum_squares.
Could we have an atom to support this use case, e.g sum_powers?
The text was updated successfully, but these errors were encountered: