From: Michael Andreen Date: Sun, 10 Jul 2005 21:34:40 +0000 (+0000) Subject: commented out debug output X-Git-Url: https://ruin.nu/git/?p=icfp05.git;a=commitdiff_plain;h=3aea5b3a5802838fdc3ccfb1aae782b2aa8cbe32 commented out debug output --- diff --git a/icfp05.pro b/icfp05.pro index 361cdb1..e798b5e 100644 --- a/icfp05.pro +++ b/icfp05.pro @@ -4,4 +4,4 @@ TEMPLATE = subdirs -SUBDIRS = robbersrc copsrc +SUBDIRS = robbersrc copsrc newrobber diff --git a/newrobber/robber.cpp b/newrobber/robber.cpp index f2a3241..46ca640 100644 --- a/newrobber/robber.cpp +++ b/newrobber/robber.cpp @@ -12,19 +12,19 @@ string Robber::turn(){ //Ignore bribing for now cout << "nobribe:" << endl; string input; - cerr << "New turn" << endl; + //cerr << "New turn" << endl; getline(cin,input); _time = clock(); - cerr << "Starting to calculate shortest path" << endl; + //cerr << "Starting to calculate shortest path" << endl; list l = shortestPath(_location, robber,*this, *this); _oldLocation = _location; if (l.size() > 0){ - cerr << "Found a route" << endl; + //cerr << "Found a route" << endl; list::iterator i = l.begin(); _location = *++i; } - cerr << "Moving to: " << _location << endl; + //cerr << "Moving to: " << _location << endl; return _location; } @@ -51,16 +51,16 @@ int Robber::cost(const std::string& from, const std::string& to) const{ list closestFootCop = shortestPath(to, cop_foot, FindPlayer(_players, cop_foot, max), true); unsigned int closestCop = closestFootCop.size(); bool copInCar = false; - cerr << "Cop on fot " << closestCop << " intersections away: "; - copy(closestFootCop.begin(), closestFootCop.end(), ostream_iterator(cerr, " : ")); - cerr << endl; + //cerr << "Cop on fot " << closestCop << " intersections away: "; + //copy(closestFootCop.begin(), closestFootCop.end(), ostream_iterator(cerr, " : ")); + //cerr << endl; if (closestCop > 0) max = closestCop; if (max > 1){ list closestCarCop = shortestPath(to, cop_car, FindPlayer(_players, cop_car, max - 1), true); - cerr << "Cop in car " << closestCarCop.size() << " intersections away." << endl; + //cerr << "Cop in car " << closestCarCop.size() << " intersections away." << endl; if (closestCarCop.size() > 0){ closestCop = closestCarCop.size(); @@ -72,12 +72,12 @@ int Robber::cost(const std::string& from, const std::string& to) const{ if (closestCop > 0 && closestCop < 4) return 100; - cerr << "cost before cop: " << cost << endl; + //cerr << "cost before cop: " << cost << endl; if (closestCop > 2){ - cerr << "Cop " << closestCop << " intersections away." << endl; + //cerr << "Cop " << closestCop << " intersections away." << endl; cost += 12 - (copInCar ? closestCop : closestCop - 1); } - cerr << "cost after cop: " << cost << endl; + //cerr << "cost after cop: " << cost << endl; if (conInter->second.type == bank){ //cerr << "FOUND A BANK" << endl; @@ -91,7 +91,7 @@ int Robber::cost(const std::string& from, const std::string& to) const{ if (to == _oldLocation) cost *= 2; - cerr << "Street: " << to << " cost: " << cost << endl; + //cerr << "Street: " << to << " cost: " << cost << endl; return cost; }