From 194f37fcd5441e0fad659825f26688367d10d8eb Mon Sep 17 00:00:00 2001 From: Patrick Brosi Date: Wed, 6 Sep 2023 13:01:03 +0200 Subject: [PATCH] fixed precision for runtime output --- src/pfaedle/router/ShapeBuilder.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/pfaedle/router/ShapeBuilder.cpp b/src/pfaedle/router/ShapeBuilder.cpp index 2b7ba8d..aa27cca 100644 --- a/src/pfaedle/router/ShapeBuilder.cpp +++ b/src/pfaedle/router/ShapeBuilder.cpp @@ -12,6 +12,7 @@ #include #include #include + #include "ad/cppgtfs/gtfs/Feed.h" #include "pfaedle/Def.h" #include "pfaedle/gtfs/Feed.h" @@ -317,7 +318,8 @@ std::pair, Stats> ShapeBuilder::shapeL(Trip* trip) { stats.totNumTrips = 1; stats.dijkstraIters = EDijkstra::ITERS; std::map colors; - LOG(INFO) << "Matched 1 trip in " << stats.solveTime << " ms."; + LOG(INFO) << "Matched 1 trip in " << std::fixed << std::setprecision(2) + << stats.solveTime << " ms."; // print to line return {getGeom(hops, getRAttrs(trip), &colors), stats}; } catch (const std::runtime_error& e) { @@ -442,8 +444,8 @@ Stats ShapeBuilder::shapeify(pfaedle::netgraph::Graph* outNg) { stats.solveTime = TOOK(tStart, TIME()); - LOG(INFO) << "Matched " << stats.totNumTrips << " trips in " - << stats.solveTime << " ms."; + LOG(INFO) << "Matched " << stats.totNumTrips << " trips in " << std::fixed + << std::setprecision(2) << stats.solveTime << " ms."; // merge colors for (auto& cols : colors) { @@ -776,7 +778,6 @@ EdgeCandMap ShapeBuilder::getECM( double avgChildT = 0; if (chldTrNd.trips) avgChildT = chldTrNd.accTime / chldTrNd.trips; - double timeDiff = avgChildT - avgT; if (timeDiff < 0) timeDiff = 0;