I need to maximize a two-variable non-convex function, which contains a log to the base 2.
I tried CVXPY but an error appears:
cvxpy.error.DCPError: Problem does not follow DCP rules.
The function is like this:
import cvxpy as cp
import numpy as np
x = cp.Variable(2, nonneg=True)
A=23
B=34
C=45
Ob=cp.Minimize(-cp.log(1 + x[0]/(A*x[1]+C))/np.log(2) - cp.log(1 + B*x[1])/np.log(2))
constraints = [0 <= x, x <= 1, cp.sum(x) == 1, x[0] >= x[1]]
prob = cp.Problem(Ob, constraints)
result = prob.solve()
where A, B, and C are just constants.
Should I use another python library to solve the problem and what is the DCP error?
As far as I understand, you are running into a fundamental limitation of that library, as it is made to only solve convex optimization problems and your problem is non-convex.
I suggest using
scipy.optimize
instead.