Skip to content

Commit 552248d

Browse files
committed
Tweak a tolerance to deal with failing test on macOS w/Gurobi 12.0.1.
1 parent 1e4b4b0 commit 552248d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

lib/mostver.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
v = struct( 'Name', 'MOST', ...
2727
'Version', '1.3.1-dev', ...
2828
'Release', '', ...
29-
'Date', '12-Sep-2024' );
29+
'Date', '01-Mar-2025' );
3030
if nargout > 0
3131
if nargin > 0
3232
rv = v;

lib/t/t_most_uc.m

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,8 @@ function t_most_uc(quiet, create_plots, create_pdfs, savedir)
102102
mpopt = mpoption(mpopt, 'gurobi.threads', 4);
103103
mpopt = mpoption(mpopt, 'gurobi.opts.MIPGap', 0);
104104
mpopt = mpoption(mpopt, 'gurobi.opts.MIPGapAbs', 0);
105+
%mpopt = mpoption(mpopt, 'gurobi.opts.OptimalityTol', 1e-9);
106+
mpopt = mpoption(mpopt, 'gurobi.opts.FeasibilityTol', 1e-7);
105107
end
106108
if have_feature('mosek')
107109
sc = mosek_symbcon;

0 commit comments

Comments
 (0)