Skip to content

Commit 5d02ded

Browse files
committed
250807.170012.CST [skip ci] revise profile_rescue_idz_modernized/classical
1 parent 905db5f commit 5d02ded

File tree

2 files changed

+13
-11
lines changed

2 files changed

+13
-11
lines changed

.github/workflows/profile_rescue_idz_classical.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -135,16 +135,16 @@ jobs:
135135
case 'newuoa'
136136
case 'bobyqa'
137137
case 'lincoa'
138-
options.blacklist = [options.blacklist, {'EQC', 'GMNCASE3', 'PENTAGON'}];
138+
options.blacklist = [options.blacklist, {'EQC', 'GMNCASE3', 'PENTAGON'}]; % Classical LINCOA segfaults
139139
end
140140
case 'quadruple'
141141
switch '${{ matrix.solver }}'
142142
case 'newuoa'
143-
options.blacklist = [options.blacklist, {'ERRINROS', 'TOINTPSP', 'ARGLINC', 'LUKSAN13LS'}];
143+
options.blacklist = [options.blacklist, {'ERRINROS', 'TOINTPSP', 'ARGLINC', 'LUKSAN13LS', 'VANDANMSLS', 'VESUVIOULS', 'ARGLINA', 'LUKSAN11LS'}];
144144
case 'bobyqa'
145-
options.blacklist = [options.blacklist, {'ERRINRSM', 'TOINTGOR', 'DECONVU'}];
145+
options.blacklist = [options.blacklist, {'ERRINRSM', 'TOINTGOR', 'DECONVU', 'DECONVB'}];
146146
case 'lincoa'
147-
options.blacklist = [options.blacklist, {'ERRINRSM', 'METHANB8LS', 'GMNCASE2'}];
147+
options.blacklist = [options.blacklist, {'ERRINRSM', 'METHANB8LS', 'GMNCASE2', 'GMNCASE3'}];
148148
end
149149
end
150150

.github/workflows/profile_rescue_idz_modernized.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -127,13 +127,15 @@ jobs:
127127
options.maxfun_dim = 1000;
128128
options.strict = 0;
129129
options.nr = 3; % 3 random runs for each problem
130-
switch '${{ matrix.solver }}'
131-
case 'newuoa'
132-
options.blacklist = {'ARGLINA', 'ARGLINC', 'LUKSAN16LS', 'QING', 'SPIN2LS', 'LUKSAN11LS', 'ERRINROS', 'GAUSS3LS'};
133-
case 'lincoa'
134-
options.blacklist = {'SMBANK', 'DUAL2', 'SSEBLIN', 'ARGLALE', 'ARGLBLE', 'ERRINROS'};
135-
case 'bobyqa'
136-
options.blacklist = {'CHEBYQAD', 'HOLMES', 'ERRINROS ', 'TOINTPSP'};
130+
if strcmp('${{ matrix.precision }}', 'quadruple')
131+
switch '${{ matrix.solver }}'
132+
case 'newuoa'
133+
options.blacklist = {'ARGLINA', 'ARGLINC', 'LUKSAN16LS', 'QING', 'SPIN2LS', 'LUKSAN11LS', 'ERRINROS', 'GAUSS3LS', 'CHNRSNBM', 'HILBERTB', 'ARGLINB', 'LUKSAN13LS'};
134+
case 'lincoa'
135+
options.blacklist = {'SMBANK', 'DUAL2', 'SSEBLIN', 'ARGLALE', 'ARGLBLE', 'ERRINROS', 'GMNCASE1', 'DUAL3'};
136+
case 'bobyqa'
137+
options.blacklist = {'CHEBYQAD', 'HOLMES', 'ERRINROS ', 'TOINTPSP', 'DECONVU'};
138+
end
137139
end
138140
139141
try

0 commit comments

Comments
 (0)