Skip to content
Snippets Groups Projects
Commit 88cfb34e authored by sebastien's avatar sebastien
Browse files

trunk preprocessor: fixed bug with optim options

git-svn-id: https://www.dynare.org/svn/dynare/dynare_v4@2317 ac1d8469-bf42-47a9-8791-bf33cf982152
parent f93c956a
Branches
Tags
No related merge requests found
......@@ -1003,10 +1003,10 @@ posterior_analysis : POSTERIOR_ANALYSIS '(' prior_posterior_options_list ')' ';'
{ driver.run_posterior_analysis(); }
;
list_optim_option : '\'' NAME '\'' COMMA '\'' NAME '\''
{ driver.optim_options_string($2, $6); }
| '\'' NAME '\'' COMMA value
{ driver.optim_options_num($2, $5); }
list_optim_option : QUOTED_STRING COMMA QUOTED_STRING
{ driver.optim_options_string($1, $3); }
| QUOTED_STRING COMMA value
{ driver.optim_options_num($1, $3); }
;
optim_options : list_optim_option
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment