From 8b5e24a0d19af8af51155da4a5c8515bb3b8a7ee Mon Sep 17 00:00:00 2001 From: Michael Andreen Date: Sun, 10 Jul 2005 00:11:30 +0000 Subject: [PATCH] commented out some debug output --- copsrc/cop.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/copsrc/cop.cpp b/copsrc/cop.cpp index 8434960..90b5408 100644 --- a/copsrc/cop.cpp +++ b/copsrc/cop.cpp @@ -216,12 +216,12 @@ void Cop::sendPlan(){ } if (positions.size() > 0){ _robberLocation = positions.top().second; - cerr << "Sending myself to: " << _robberLocation << ", probability of robber: " << positions.top().first << endl; + //cerr << "Sending myself to: " << _robberLocation << ", probability of robber: " << positions.top().first << endl; } for (int i = 0; i < 2 && positions.size() > 1; ++i ){ positions.pop(); locations.push_back(positions.top().second); - cerr << "Sending another cop to: " << locations.back() << ", probability of robber: " << positions.top().first << endl; + //cerr << "Sending another cop to: " << locations.back() << ", probability of robber: " << positions.top().first << endl; } }else{ locations.push_back(_robberLocation); @@ -249,7 +249,7 @@ void Cop::sendPlan(){ } } if (!cop.empty()){ - cerr << "Sending " << cop << " to " << locations.front() << endl; + //cerr << "Sending " << cop << " to " << locations.front() << endl; _copTargets[cop].first = locations.front(); busyCops.push_back(cop); } -- 2.39.2