is there any chance to solve a logarithmic objective function using lpsolve? indeed, I want to change the first line of the following code in lpsolve IDE to log(x11 b11 + x12 b12 + x21 b21 + x22 b22), but lpsolve can not solve it then. Does anybody here have dealt with this situation before? thanks.
max: x11 b11 + x12 b12 + x21 b21 + x22 b22;
x11 + x21 = 1;
x12 + x22 = 1;
54 = b11 x11 + b11 x12;
54 = b12 x11 + b12 x12;
54 = b21 x21 + b21 x22;
54 = b22 x21 + b22 x22;
bin x11, x12, x21, x22;