Skip to content
Snippets Groups Projects
Commit 3202af66 authored by sebastien's avatar sebastien
Browse files

4.0 bugfix: the preprocessor now accepts integers for options tau and lambda...

4.0 bugfix: the preprocessor now accepts integers for options tau and lambda in priors for BVAR a la Sims models


git-svn-id: https://www.dynare.org/svn/dynare/branches/4.0@2076 ac1d8469-bf42-47a9-8791-bf33cf982152
parent bfbf7f14
No related branches found
Tags
No related merge requests found
......@@ -713,6 +713,7 @@ signed_float : PLUS FLOAT_NUMBER
{ $2->insert(0, "-"); $$ = $2; }
| FLOAT_NUMBER
{ $$ = $1; }
| signed_integer
;
estimated_params : ESTIMATED_PARAMS ';' estimated_list END { driver.estimated_params(); };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment