From 5e869669a026ef8126e82a27d36a83bce2331fbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Adjemian=20=28Argos=29?= Date: Wed, 5 Jul 2023 16:36:32 +0200 Subject: [PATCH] Set verbose to false by default. --- matlab/+pac/+update/parameters.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/matlab/+pac/+update/parameters.m b/matlab/+pac/+update/parameters.m index 09a5e4ffb..4ca75373c 100644 --- a/matlab/+pac/+update/parameters.m +++ b/matlab/+pac/+update/parameters.m @@ -31,7 +31,7 @@ function DynareModel = parameters(pacname, DynareModel, DynareOutput, verbose) % along with Dynare. If not, see . if nargin<4 - verbose = true; + verbose = false; end % Check that the first input is a row character array. @@ -314,4 +314,4 @@ if growth_flag DynareModel.params(pacmodel.components(j).growth_neutrality_param_index) = cc/gamma; % Multiplies the variable or expression provided though the growth option in command pac_model. end end -end \ No newline at end of file +end