From c7d5442b307153c179ab71674f57cf84712a097b Mon Sep 17 00:00:00 2001 From: zaikunzhang Date: Sun, 8 Oct 2023 09:56:53 +0800 Subject: [PATCH] 231008.095653.HKT remove debug_only --- matlab/tests/parallel.m | 1 - matlab/tests/recursive.m | 1 - matlab/tests/stress.m | 1 - 3 files changed, 3 deletions(-) diff --git a/matlab/tests/parallel.m b/matlab/tests/parallel.m index 7276e44d39..6f99ca117a 100644 --- a/matlab/tests/parallel.m +++ b/matlab/tests/parallel.m @@ -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); diff --git a/matlab/tests/recursive.m b/matlab/tests/recursive.m index e50e76811e..d182e00f53 100644 --- a/matlab/tests/recursive.m +++ b/matlab/tests/recursive.m @@ -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); diff --git a/matlab/tests/stress.m b/matlab/tests/stress.m index f972e6263c..d6860129b4 100644 --- a/matlab/tests/stress.m +++ b/matlab/tests/stress.m @@ -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);