From c7a802e196627de50968b0f2a921c40e149a95df Mon Sep 17 00:00:00 2001 From: Matthew Andres Moreno Date: Wed, 15 Nov 2023 01:35:13 -0500 Subject: [PATCH] Remove debugging cruft --- avida-core/source/actions/PopulationActions.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/avida-core/source/actions/PopulationActions.cc b/avida-core/source/actions/PopulationActions.cc index aeebbcb2c..21414d3a4 100644 --- a/avida-core/source/actions/PopulationActions.cc +++ b/avida-core/source/actions/PopulationActions.cc @@ -5297,7 +5297,6 @@ class cActionKillDemesHighestParasiteLoad : public cAction ); const int kill_quota = std::min(binomial_draw, m_killmax); if (kill_quota == 0) return; - std::cout << "kill quota " << kill_quota << std::endl; std::vector top_n(kill_quota); const auto partial_sort_end = std::partial_sort_copy( @@ -5306,12 +5305,10 @@ class cActionKillDemesHighestParasiteLoad : public cAction std::greater() ); const auto kill_thresh = *std::prev(partial_sort_end); - std::cout << "kill thresh " << kill_thresh << std::endl; for (int d = 0; d < num_demes; d++) { if (parasite_loads[d] and parasite_loads[d] >= kill_thresh) { - std::cout << "bump" << std::endl; cDeme &deme = pop.GetDeme(d); deme.KillAll(ctx); }