]> ruin.nu Git - icfp05.git/commitdiff
commented out some debug output
authorMichael Andreen <harv@ruin.nu>
Sun, 10 Jul 2005 00:11:30 +0000 (00:11 +0000)
committerMichael Andreen <harv@ruin.nu>
Sun, 10 Jul 2005 00:11:30 +0000 (00:11 +0000)
copsrc/cop.cpp

index 8434960aed079d7147727d8a96b6134aac5d4a30..90b54087237ca12ca5eb069b57e6c1a8acf4d679 100644 (file)
@@ -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);
                        }