comparison config/SMALL_solve_config.m @ 246:cef4500b936f ver_2.1

Merge
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Wed, 31 Oct 2012 12:10:13 +0000
parents 5c8bcdadb380
children
comparison
equal deleted inserted replaced
245:96d17e5dc5d3 246:cef4500b936f
72 % MMbox does not accept implicit dictionary definition 72 % MMbox does not accept implicit dictionary definition
73 A = opToMatrix(Problem.A, 1); 73 A = opToMatrix(Problem.A, 1);
74 end 74 end
75 75
76 [y, cost] = wrapper_mm_solver(b, A, solver.param); 76 [y, cost] = wrapper_mm_solver(b, A, solver.param);
77
78 elseif (strcmpi(solver.toolbox, 'UNLocBox'))
79 if ~isa(Problem.A,'float')
80 % MMbox does not accept implicit dictionary definition
81 A = opToMatrix(Problem.A, 1);
82 end
83
84 y = unloc_solver(b, A, solver.param,solver.name);
77 85
78 %% 86 %%
79 % Please do not make any changes to the 'SMALL_solve_config.m' file 87 % Please do not make any changes to the 'SMALL_solve_config.m' file
80 % All the changes should be done to your local configuration file 88 % All the changes should be done to your local configuration file
81 % named 'SMALL_solve_config_local.m' 89 % named 'SMALL_solve_config_local.m'