I want to further my real world semi definite programming optimization problem with a constraint on sum of absolute values. For example:
abs(x1) + abs(x2) + abs(x3) <= 10.
I have searched internet and documentation but could not find a way to represent this. I am using python and cvxopt
module.