From 5bf80a95d0b80d3356c8b2c0823385231ef670a6 Mon Sep 17 00:00:00 2001 From: Jean-Paul Chaput Date: Sun, 21 Nov 2021 19:37:06 +0100 Subject: [PATCH] In Katana::Configuration::print(), display the _{h,v}TrackReservedMin. --- katana/src/Configuration.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/katana/src/Configuration.cpp b/katana/src/Configuration.cpp index 8ffbc1bc..53e0361e 100644 --- a/katana/src/Configuration.cpp +++ b/katana/src/Configuration.cpp @@ -180,6 +180,8 @@ namespace Katana { cout << Dots::asBool (" - Use GR density estimate" ,useGlobalEstimate()) << endl; cout << Dots::asBool (" - Use static bloat profile" ,useStaticBloatProfile()) << endl; cout << Dots::asDouble(" - GCell saturate ratio (LA)" ,getSaturateRatio()) << endl; + cout << Dots::asUInt (" - Edge min H reserved local" ,_hTracksReservedMin) << endl; + cout << Dots::asUInt (" - Edge min V reserved local" ,_vTracksReservedMin) << endl; cout << Dots::asUInt (" - Edge max H reserved local" ,_hTracksReservedLocal) << endl; cout << Dots::asUInt (" - Edge max V reserved local" ,_vTracksReservedLocal) << endl; cout << Dots::asUInt (" - Terminal saturated edge capacity" ,_termSatReservedLocal) << endl;