From 4c02542dc531c57618a7c40069ed7f791362d9b7 Mon Sep 17 00:00:00 2001 From: DennisOSRM Date: Fri, 28 Sep 2012 12:29:46 +0200 Subject: [PATCH] removing some debug output --- DataStructures/NNGrid.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/DataStructures/NNGrid.h b/DataStructures/NNGrid.h index 8c2057e81..5ce3b7933 100644 --- a/DataStructures/NNGrid.h +++ b/DataStructures/NNGrid.h @@ -105,12 +105,10 @@ public: int tlat = 100000*lat2y(edge.lat2/100000.); int tlon = edge.lon2; AddEdge( _GridEdge( edge.id, edge.nameID, edge.weight, _Coordinate(slat, slon), _Coordinate(tlat, tlon), edge.belongsToTinyComponent ) ); - INFO("adding edge=> id:" << edge.id); } double timestamp = get_timestamp(); //create index file on disk, old one is over written indexOutFile.open(fileIndexOut, std::ios::out | std::ios::binary | std::ios::trunc); - INFO("sorting grid data consisting of " << entries.size() << " edges..."); //sort entries stxxl::sort(entries.begin(), entries.end(), CompareGridEdgeDataByRamIndex(), 1024*1024*1024); INFO("finished sorting after " << (get_timestamp() - timestamp) << "s");