Skip to content

Commit

Permalink
fixed simulation_ended bug in eSIS
Browse files Browse the repository at this point in the history
  • Loading branch information
benmaier committed Jan 4, 2019
1 parent 90c1a0d commit 7af5fc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _tacoma/eSIS.h
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ class eSIS

bool simulation_ended()
{
return (infected.size() == 0);
return false;
};

void get_rates_and_Lambda(vector < double > &rates,
Expand Down

0 comments on commit 7af5fc6

Please sign in to comment.