Default option: don't save files for csminwel and cmaes

Usually these files are not needed (if then user can turn this option on manually) and only clutter the folder.
Moreover, the testsuite crashes on rare occasions if several mod files are run in the same folder and the optimizers write the files simultaneously.
remove-submodule
Willi Mutschler 2023-06-21 21:53:14 +02:00 committed by Sébastien Villemot
parent 050679cd56
commit e6920a60a1
No known key found for this signature in database
GPG Key ID: 2CECE9350ECEBE4A
1 changed files with 2 additions and 2 deletions

View File

@ -556,7 +556,7 @@ options_.hessian = hessian;
csminwel.tolerance.f=1e-7;
csminwel.maxiter=1000;
csminwel.verbosity=1;
csminwel.Save_files=1;
csminwel.Save_files=false;
options_.csminwel=csminwel;
@ -581,7 +581,7 @@ simplex.delta_factor=0.05;
options_.simplex = simplex;
% CMAES optimization routine.
cmaes.SaveVariables='on';
cmaes.SaveVariables='off';
cmaes.DispFinal='on';
cmaes.WarnOnEqualFunctionValues='no';
cmaes.DispModulo='10';