options = sdpsettings('solver','intlinprog','verbose',2,'showprogress',1,'intlinprog.MaxNodes',1e2,'intlinprog.MaxTime',20)
sol = optimize(constraints,objective)
Although I limited the maximum running time for the solver (which works fine if I use the solve-command from native MATLAB) the solver does not abort when the time is over.
Also the verbose-option does not printany messages to my console.
What am I doing wrong?