Go to the source code of this file.
|
| example1.A = np.array([1.0, 1.0 ]).reshape((2,1)) |
|
| example1.example = QProblem(2, 1) |
|
| example1.g = np.array([1.5, 1.0 ]) |
|
| example1.g_new = np.array([1.0, 1.5]) |
|
| example1.H = np.array([1.0, 0.0, 0.0, 0.5 ]).reshape((2,2)) |
|
| example1.lb = np.array([0.5, -2.0]) |
|
| example1.lb_new = np.array([0.0, -1.0]) |
|
| example1.lbA = np.array([-1.0 ]) |
|
| example1.lbA_new = np.array([-2.0]) |
|
| example1.nWSR = np.array([10]) |
|
| example1.options = Options() |
|
| example1.printLevel |
|
| example1.ub = np.array([5.0, 2.0 ]) |
|
| example1.ub_new = np.array([5.0, -0.5]) |
|
| example1.ubA = np.array([2.0]) |
|
| example1.ubA_new = np.array([1.0]) |
|
| example1.xOpt = np.zeros(2) |
|