Skip to content

Commit

Permalink
231008.095653.HKT remove debug_only
Browse files Browse the repository at this point in the history
  • Loading branch information
zaikunzhang committed Oct 8, 2023
1 parent bacf90a commit c7d5442
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion matlab/tests/parallel.m
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ function parallel(solver, options)
opt = struct();
opt.verbose = false;
opt.debug = (rand() < 0.5);
opt.debug_only = (rand() < 0.5);
opt.classical = false;
opt.single = false;
setup(solver, opt);
Expand Down
1 change: 0 additions & 1 deletion matlab/tests/recursive.m
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ function recursive(solver, options)
opt = struct();
opt.verbose = false;
opt.debug = (rand() < 0.5)
opt.debug_only = (rand() < 0.5);
opt.classical = false;
opt.single = false;
setup(solver, opt);
Expand Down
1 change: 0 additions & 1 deletion matlab/tests/stress.m
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ function stress(solver, options)
cd(fileparts(fileparts(fileparts(mfilename('fullpath')))));
opt.verbose = true;
opt.debug = (rand() < 0.5);
opt.debug_only = (rand() < 0.5);
opt.single = strcmpi(precision, 'single');
opt.quadruple = strcmpi(precision, 'quadruple');
setup(solver, opt);
Expand Down

0 comments on commit c7d5442

Please sign in to comment.