Set verbose to false by default.

remove-submodule
Stéphane Adjemian (Argos) 2023-07-05 16:36:32 +02:00
parent 175662a75e
commit 5e869669a0
Signed by: stepan
GPG Key ID: A6D44CB9C64CE77B
1 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ function DynareModel = parameters(pacname, DynareModel, DynareOutput, verbose)
% along with Dynare. If not, see <https://www.gnu.org/licenses/>.
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
end