Skip to content
Snippets Groups Projects
Commit 9983f393 authored by Thomas Obadia's avatar Thomas Obadia
Browse files

Force writing output of all mosquito compartments (6 instead of 3) to be in...

Force writing output of all mosquito compartments (6 instead of 3) to be in accordance with Output_overview.R
parent fcfb2425
No related branches found
No related tags found
1 merge request!3Merge devel-reconcile-v4 into default branch
......@@ -211,9 +211,9 @@ void Simulation::write_output(const char *output_File)
for (int v = 0; v < N_mosq; v++)
{
// Write only compartments S, E and I in mosquitoes
for (int k = 3; k < N_M_comp; k++)
// for (int k = 3; k < N_M_comp; k++)
// Write all compartments in mosquitoes
// for (int k = 0; k < N_M_comp; k++)
for (int k = 0; k < N_M_comp; k++)
{
output_Stream << yM_t[i][v][k] << "\t";
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment