print nonstationary field for trend_component and var models

issue#70
Houtan Bastani 2018-08-22 14:29:07 +02:00
parent 1918a56a70
commit 91b7888e61
1 changed files with 8 additions and 2 deletions

View File

@ -256,8 +256,11 @@ TrendComponentModelTable::writeOutput(ostream &output) const
<< "M_.trend_component." << name << ".orig_diff_var = [";
for (auto it : orig_diff_var.at(name))
output << (it >= 0 ? symbol_table.getTypeSpecificID(it) + 1 : -1) << " ";
output << "];" << endl
<< "M_.trend_component." << name << ".nonstationary = [";
for (auto it : nonstationary.at(name))
output << (it ? "true" : "false") << " ";
output << "];" << endl;
int i = 1;
for (const auto &it : rhs.at(name))
{
@ -363,8 +366,11 @@ VarModelTable::writeOutput(ostream &output) const
<< "M_.var." << name << ".orig_diff_var = [";
for (auto it : orig_diff_var.at(name))
output << (it >= 0 ? symbol_table.getTypeSpecificID(it) + 1 : -1) << " ";
output << "];" << endl
<< "M_.var." << name << ".nonstationary = [";
for (auto it : nonstationary.at(name))
output << (it ? "true" : "false") << " ";
output << "];" << endl;
int i = 1;
for (const auto &it : rhs.at(name))
{