Created
September 30, 2018 04:12
-
-
Save ruloweb/d1c2653a29321cde43158076d1890cf9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from cvxpy import * | |
import numpy | |
# Problem data. | |
m = 30 | |
n = 20 | |
numpy.random.seed(1) | |
A = numpy.random.randn(m, n) | |
b = numpy.random.randn(m) | |
# Construct the problem. | |
x = Variable(n) | |
objective = Minimize(sum_squares(A*x - b)) | |
constraints = [0 <= x, x <= 1] | |
prob = Problem(objective, constraints) | |
# The optimal objective is returned by prob.solve(). | |
result = prob.solve("SCS", gpu=True, verbose=True) | |
# The optimal value for x is stored in x.value. | |
print(x.value) | |
# The optimal Lagrange multiplier for a constraint | |
# is stored in constraint.dual_value. | |
print(constraints[0].dual_value) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment