From 7af5fc6ed74a0a25605539698dd81a177e51e9e2 Mon Sep 17 00:00:00 2001 From: Benjamin Maier Date: Fri, 4 Jan 2019 16:27:28 +0100 Subject: [PATCH] fixed simulation_ended bug in eSIS --- _tacoma/eSIS.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_tacoma/eSIS.h b/_tacoma/eSIS.h index e758269..b33e01a 100644 --- a/_tacoma/eSIS.h +++ b/_tacoma/eSIS.h @@ -178,7 +178,7 @@ class eSIS bool simulation_ended() { - return (infected.size() == 0); + return false; }; void get_rates_and_Lambda(vector < double > &rates,