Hi Prof. Johan,
I have a working code in matlab R2022A and it is working fine. When I add the same code to newer versions the options of using gurobi is making issue. I used the following SDP settings which is making the issue here.
options = sdpsettings('solver', 'gurobi', 'verbose', 1, 'showprogress',1, 'debug',1, 'gurobi.timelimit',36000, 'gurobi.MIPgap',0.1);
I am getting the following error.
Error using gurobi
Gurobi error 10008: Unable to set parameter TuneTimeLimit to value -1 (minimum is 0)
Error in callgurobi (line 20)
result = gurobi(model,model.params);
Error in solvesdp (line 420)
eval(['output = ' solver.call '(interfacedata);']);
Error in optimize (line 31)
[varargout{1:nargout}] = solvesdp(varargin{:});
Please let me know how to resolve this issue.
Regards,
Sudheer.