Skip to content

Commit

Permalink
Adding quotes when saving text
Browse files Browse the repository at this point in the history
  • Loading branch information
gvegayon committed Sep 1, 2024
1 parent 2313a9e commit 6a93500
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions epiworld.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4195,9 +4195,9 @@ inline void DataBase<TSeq>::write_data(
#ifdef EPI_DEBUG
EPI_GET_THREAD_ID() << " " <<
#endif
i << " " <<
model->states_labels[from] << " " <<
model->states_labels[to] << " " <<
i << " \"" <<
model->states_labels[from] << "\" \"" <<
model->states_labels[to] << "\" " <<
hist_transition_matrix[i * (ns * ns) + to * ns + from] << "\n";

}
Expand Down
6 changes: 3 additions & 3 deletions include/epiworld/database-meat.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1007,9 +1007,9 @@ inline void DataBase<TSeq>::write_data(
#ifdef EPI_DEBUG
EPI_GET_THREAD_ID() << " " <<
#endif
i << " " <<
model->states_labels[from] << " " <<
model->states_labels[to] << " " <<
i << " \"" <<
model->states_labels[from] << "\" \"" <<
model->states_labels[to] << "\" " <<
hist_transition_matrix[i * (ns * ns) + to * ns + from] << "\n";

}
Expand Down

0 comments on commit 6a93500

Please sign in to comment.