Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dynare
preprocessor
Commits
66a766b0
Verified
Commit
66a766b0
authored
Dec 04, 2018
by
Sébastien Villemot
Browse files
Small modernization
parent
8bda21c5
Pipeline
#407
passed with stage
in 1 minute and 22 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/DynamicModel.cc
View file @
66a766b0
...
...
@@ -5637,25 +5637,25 @@ DynamicModel::writeLatexOriginalFile(const string &basename, const bool write_eq
void
DynamicModel
::
substituteEndoLeadGreaterThanTwo
(
bool
deterministic_model
,
bool
nopreprocessoroutput
)
{
substituteLeadLagInternal
(
AuxVarType
::
endoLead
,
deterministic_model
,
vector
<
string
>
()
,
nopreprocessoroutput
);
substituteLeadLagInternal
(
AuxVarType
::
endoLead
,
deterministic_model
,
{}
,
nopreprocessoroutput
);
}
void
DynamicModel
::
substituteEndoLagGreaterThanTwo
(
bool
deterministic_model
,
bool
nopreprocessoroutput
)
{
substituteLeadLagInternal
(
AuxVarType
::
endoLag
,
deterministic_model
,
vector
<
string
>
()
,
nopreprocessoroutput
);
substituteLeadLagInternal
(
AuxVarType
::
endoLag
,
deterministic_model
,
{}
,
nopreprocessoroutput
);
}
void
DynamicModel
::
substituteExoLead
(
bool
deterministic_model
,
bool
nopreprocessoroutput
)
{
substituteLeadLagInternal
(
AuxVarType
::
exoLead
,
deterministic_model
,
vector
<
string
>
()
,
nopreprocessoroutput
);
substituteLeadLagInternal
(
AuxVarType
::
exoLead
,
deterministic_model
,
{}
,
nopreprocessoroutput
);
}
void
DynamicModel
::
substituteExoLag
(
bool
deterministic_model
,
bool
nopreprocessoroutput
)
{
substituteLeadLagInternal
(
AuxVarType
::
exoLag
,
deterministic_model
,
vector
<
string
>
()
,
nopreprocessoroutput
);
substituteLeadLagInternal
(
AuxVarType
::
exoLag
,
deterministic_model
,
{}
,
nopreprocessoroutput
);
}
void
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment