Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
preprocessor
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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dynare
preprocessor
Compare revisions
991759b2c7c60b59a41e1079cdfcf938170d716c to 9372796b0552b442f2f363cdc987001f4824c779
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
Dynare/preprocessor
Select target project
No results found
9372796b0552b442f2f363cdc987001f4824c779
Select Git revision
Swap
Target
Dynare/preprocessor
Select target project
normann/preprocessor
Dynare/preprocessor
FerhatMihoubi/preprocessor
MichelJuillard/preprocessor
sebastien/preprocessor
lnsongxf/preprocessor
albop/preprocessor
DoraK/preprocessor
amg/preprocessor
wmutschl/preprocessor
JohannesPfeifer/preprocessor
11 results
991759b2c7c60b59a41e1079cdfcf938170d716c
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
Allow MATLAB/Octave vectors in “conditional_forecast_paths” block
· 9372796b
Sébastien Villemot
authored
1 month ago
Ref.
dynare#1949
9372796b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/Shocks.cc
+4
-7
4 additions, 7 deletions
src/Shocks.cc
with
4 additions
and
7 deletions
src/Shocks.cc
View file @
9372796b
/*
* Copyright © 2003-202
4
Dynare Team
* Copyright © 2003-202
5
Dynare Team
*
* This file is part of Dynare.
*
...
...
@@ -881,12 +881,9 @@ ConditionalForecastPathsStatement::writeOutput(ostream& output,
for
(
const
auto
&
[
period_range
,
value
]
:
elems
)
{
auto
[
period1
,
period2
]
=
get
<
pair
<
int
,
int
>>
(
period_range
);
for
(
int
j
=
period1
;
j
<=
period2
;
j
++
)
{
output
<<
"constrained_paths_("
<<
k
<<
","
<<
j
<<
")="
;
value
->
writeOutput
(
output
);
output
<<
";"
<<
endl
;
}
output
<<
"constrained_paths_("
<<
k
<<
","
<<
period1
<<
":"
<<
period2
<<
")="
;
value
->
writeOutput
(
output
);
output
<<
";"
<<
endl
;
}
k
++
;
}
...
...
This diff is collapsed.
Click to expand it.