Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dynare
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dynare
dynare
Commits
022f0549
Commit
022f0549
authored
Sep 24, 2013
by
Stéphane Adjemian
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' into use-dynSeries
parents
303e3845
db485235
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/dynare.texi
+1
-1
1 addition, 1 deletion
doc/dynare.texi
preprocessor/ComputingTasks.cc
+4
-2
4 additions, 2 deletions
preprocessor/ComputingTasks.cc
with
5 additions
and
3 deletions
doc/dynare.texi
+
1
−
1
View file @
022f0549
...
@@ -326,7 +326,7 @@ Adjemian (Université du Maine, Gains and Cepremap), Houtan Bastani
...
@@ -326,7 +326,7 @@ Adjemian (Université du Maine, Gains and Cepremap), Houtan Bastani
(Cepremap), Michel Juillard (Banque de France), Frédéric Karamé
(Cepremap), Michel Juillard (Banque de France), Frédéric Karamé
(Université du Maine, Gains and Cepremap), Junior Maih (Norges Bank),
(Université du Maine, Gains and Cepremap), Junior Maih (Norges Bank),
Ferhat Mihoubi (Université Paris-Est Créteil, Epee and Cepremap), George
Ferhat Mihoubi (Université Paris-Est Créteil, Epee and Cepremap), George
Perendia, Johannes Pfeifer (Universit
ät Tübingen
), Marco Ratto (JRC)
Perendia, Johannes Pfeifer (Universit
y of Mannheim
), Marco Ratto (JRC)
and Sébastien Villemot (Cepremap).
and Sébastien Villemot (Cepremap).
Increasingly, the developer base is expanding, as tools developed by
Increasingly, the developer base is expanding, as tools developed by
researchers outside of Cepremap are integrated into Dynare. Financial
researchers outside of Cepremap are integrated into Dynare. Financial
...
...
This diff is collapsed.
Click to expand it.
preprocessor/ComputingTasks.cc
+
4
−
2
View file @
022f0549
...
@@ -618,14 +618,16 @@ EstimatedParamsInitStatement::writeOutput(ostream &output, const string &basenam
...
@@ -618,14 +618,16 @@ EstimatedParamsInitStatement::writeOutput(ostream &output, const string &basenam
{
{
if
(
symb_type
==
eExogenous
)
if
(
symb_type
==
eExogenous
)
{
{
output
<<
"tmp1 = find((estim_params_.corrx(:,1)=="
<<
symb_id
<<
")) & (estim_params_.corrx(:,2)=="
<<
symbol_table
.
getTypeSpecificID
(
it
->
name2
)
+
1
<<
");"
<<
endl
;
output
<<
"tmp1 = find((estim_params_.corrx(:,1)=="
<<
symb_id
<<
" & estim_params_.corrx(:,2)=="
<<
symbol_table
.
getTypeSpecificID
(
it
->
name2
)
+
1
<<
") | "
<<
"(estim_params_.corrx(:,2)=="
<<
symb_id
<<
" & estim_params_.corrx(:,1)=="
<<
symbol_table
.
getTypeSpecificID
(
it
->
name2
)
+
1
<<
"));"
<<
endl
;
output
<<
"estim_params_.corrx(tmp1,3) = "
;
output
<<
"estim_params_.corrx(tmp1,3) = "
;
it
->
init_val
->
writeOutput
(
output
);
it
->
init_val
->
writeOutput
(
output
);
output
<<
";"
<<
endl
;
output
<<
";"
<<
endl
;
}
}
else
if
(
symb_type
==
eEndogenous
)
else
if
(
symb_type
==
eEndogenous
)
{
{
output
<<
"tmp1 = find((estim_params_.corrn(:,1)=="
<<
symb_id
<<
")) & (estim_params_.corrn(:,2)=="
<<
symbol_table
.
getTypeSpecificID
(
it
->
name2
)
+
1
<<
";"
<<
endl
;
output
<<
"tmp1 = find((estim_params_.corrn(:,1)=="
<<
symb_id
<<
" & estim_params_.corrn(:,2)=="
<<
symbol_table
.
getTypeSpecificID
(
it
->
name2
)
+
1
<<
") | "
<<
"(estim_params_.corrn(:,2)=="
<<
symb_id
<<
" & estim_params_.corrn(:,1)=="
<<
symbol_table
.
getTypeSpecificID
(
it
->
name2
)
+
1
<<
"));"
<<
endl
;
output
<<
"estim_params_.corrn(tmp1,3) = "
;
output
<<
"estim_params_.corrn(tmp1,3) = "
;
it
->
init_val
->
writeOutput
(
output
);
it
->
init_val
->
writeOutput
(
output
);
output
<<
";"
<<
endl
;
output
<<
";"
<<
endl
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment