Closed adler-j closed 8 years ago
Currently when trying to use several variables at once:
>>> x = proximal.Variable(3) >>> y = proximal.Variable(6) >>> rhs = np.array([1, 2, 3]) >>> prob = proximal.Problem([proximal.sum_squares(x - rhs), proximal.sum_squares(proximal.subsample(y, [2]) - x)]) >>> prob.solve()
errors are encountered. Is this type of problem intended to be supported in ProxImaL? If not, perhaps a check should be added to disallow it.
Multiple variables are supposed to work. This particular bug is fixed now. A lot of the problem analysis and rewriting is disabled for multiple variables at the moment (though the plan is to make it work).
Currently when trying to use several variables at once:
errors are encountered. Is this type of problem intended to be supported in ProxImaL? If not, perhaps a check should be added to disallow it.