0001 function test_most(verbose)
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 if nargin < 1
0018 verbose = 0;
0019 end
0020
0021 tests = {};
0022
0023
0024 have_c3sopf = exist('c3sopf', 'file') == 2;
0025 tests{end+1} = 't_most_3b_1_1_0';
0026 tests{end+1} = 't_most_3b_3_1_0';
0027 if have_c3sopf
0028 tests{end+1} = 't_most_3b_1_1_2';
0029 tests{end+1} = 't_most_3b_3_1_2';
0030 end
0031 tests{end+1} = 't_most_30b_1_1_0';
0032 tests{end+1} = 't_most_30b_3_1_0';
0033 if have_c3sopf
0034 tests{end+1} = 't_most_30b_1_1_17';
0035 tests{end+1} = 't_most_30b_3_1_17';
0036 end
0037 tests{end+1} = 't_most_fixed_res';
0038 tests{end+1} = 't_most_w_ds';
0039 tests{end+1} = 't_most_30b_1_1_0_uc';
0040 if have_c3sopf
0041 tests{end+1} = 't_most_sp';
0042 tests{end+1} = 't_most_spuc';
0043 end
0044 tests{end+1} = 't_most_uc';
0045 tests{end+1} = 't_most_suc';
0046
0047 t_run_tests( tests, verbose );