From b1d0ab71025ed879244012a5f35202118978f429 Mon Sep 17 00:00:00 2001 From: Daniel Bergman Date: Thu, 24 Oct 2024 08:53:31 -0400 Subject: [PATCH] initialize total_attack_time at 0.0 --- core/PhysiCell_cell.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/PhysiCell_cell.cpp b/core/PhysiCell_cell.cpp index 3780f0ea1..0801c4c90 100644 --- a/core/PhysiCell_cell.cpp +++ b/core/PhysiCell_cell.cpp @@ -248,7 +248,7 @@ Cell_State::Cell_State() number_of_nuclei = 1; // damage = 0.0; - // total_attack_time = 0.0; + total_attack_time = 0.0; contact_with_basement_membrane = false;