You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to yal...@googlegroups.com
Hi,
how to set the tolerance (maximum gap) for a solver (from yalmip)?
I am using gurobi and mosek, and I would be happy even if the solution they give me has an error of 5% from the optimum bound. When the gap is <5% I want the solver stops and return me the current solution.
Thanks
Johan Löfberg
unread,
Mar 9, 2015, 4:38:36 AM3/9/15
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to yal...@googlegroups.com
First you have to find out which option you are interested in. Read the solver reference or make a good guess
ops = sdpsettings;ops.gurobi
Perhaps
ops = sdpsettings('gurobi.MIPGap',0.05)
G
unread,
Mar 9, 2015, 4:58:08 AM3/9/15
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to yal...@googlegroups.com
Ah ok thanks, I thought there was an unique name in the yalmip options, which then was internally translated (a bit of science fiction probably).