Skip to content
Snippets Groups Projects
Verified Commit c67d05e7 authored by Houtan Bastani's avatar Houtan Bastani
Browse files

run dynare with `gui -DGUI`

parent 6d540dec
Branches
No related tags found
No related merge requests found
...@@ -14,7 +14,7 @@ function dynare_command_options_dynare() ...@@ -14,7 +14,7 @@ function dynare_command_options_dynare()
% SPECIAL REQUIREMENTS % SPECIAL REQUIREMENTS
% none % none
% Copyright (C) 2003-2019 Dynare Team % Copyright (C) 2003-2020 Dynare Team
% %
% This file is part of Dynare. % This file is part of Dynare.
% %
...@@ -164,12 +164,6 @@ dynare_gui_.dynare.setup{num,4} = ['Instructs Dynare not to write parameter ' .. ...@@ -164,12 +164,6 @@ dynare_gui_.dynare.setup{num,4} = ['Instructs Dynare not to write parameter ' ..
'running dynare on a large .mod file that runs into ' ... 'running dynare on a large .mod file that runs into ' ...
'workspace size limitations imposed by MATLAB.']; 'workspace size limitations imposed by MATLAB.'];
num = num+1;
dynare_gui_.dynare.setup{num,1} = 'onlymodel';
dynare_gui_.dynare.setup{num,2} = 1;
dynare_gui_.dynare.setup{num,3} = 'check_option';
dynare_gui_.dynare.setup{num,4} = 'Instructs Dynare to parse the .mod file but not to run commands it contains';
num = num+1; num = num+1;
dynare_gui_.dynare.setup{num,1} = 'compute_xrefs'; dynare_gui_.dynare.setup{num,1} = 'compute_xrefs';
dynare_gui_.dynare.setup{num,2} = 0; dynare_gui_.dynare.setup{num,2} = 0;
......
...@@ -13,7 +13,7 @@ function comm_str = command_string(comm_name, comm) ...@@ -13,7 +13,7 @@ function comm_str = command_string(comm_name, comm)
% SPECIAL REQUIREMENTS % SPECIAL REQUIREMENTS
% none % none
% Copyright (C) 2003-2019 Dynare Team % Copyright (C) 2003-2020 Dynare Team
% %
% This file is part of Dynare. % This file is part of Dynare.
% %
...@@ -33,7 +33,7 @@ function comm_str = command_string(comm_name, comm) ...@@ -33,7 +33,7 @@ function comm_str = command_string(comm_name, comm)
global project_info global project_info
if strcmp(comm_name, 'dynare') if strcmp(comm_name, 'dynare')
comm_str = [comm_name ' ' project_info.mod_file ' onlymodel ']; comm_str = [comm_name ' ' project_info.mod_file ' gui -DGUI '];
if project_info.project_model_stochastic if project_info.project_model_stochastic
comm_str = [comm_str 'stochastic ']; comm_str = [comm_str 'stochastic '];
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment