Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion matlab/tests/testprima.m
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,8 @@ function testprima(release, precision, nrun, test_classical, verbose)
clflag_list = {true, false}; % clflag: call the solvers in classical mode (true) or not (false)
end

clflag_list = {true}; % For test

for irun = 1 : nrun
fprintf ('\n');
if (nrun > 1)
Expand Down Expand Up @@ -136,7 +138,6 @@ function testprima(release, precision, nrun, test_classical, verbose)
options.solver = solver;
options.classical = clflag;
options.iprint = round(4*(2*rand() - 1)) * verbose;
options.iprint = abs(options.iprint); % For test
problem.options = options;

switch type
Expand Down
Loading