From e2316578f28edd102425195ce4a36a56af965e7d Mon Sep 17 00:00:00 2001 From: Jean-Paul Chaput Date: Sat, 27 Aug 2016 16:03:15 +0200 Subject: [PATCH] Some psychotic correction in alignement of displayed messages. --- etesian/src/EtesianEngine.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/etesian/src/EtesianEngine.cpp b/etesian/src/EtesianEngine.cpp index bb5183e7..9cb9b54e 100644 --- a/etesian/src/EtesianEngine.cpp +++ b/etesian/src/EtesianEngine.cpp @@ -607,7 +607,7 @@ namespace Etesian { auto solv = get_star_linear_system( _circuit, _placementLB, 1.0, 0, 10) // Limit the number of pins: don't want big awful nets with high weight + get_pulling_forces( _circuit, _placementUB, 1000000.0); solve_linear_system( _circuit, _placementLB, solv, 200 ); - _progressReport2(" [--]" ); + _progressReport2(" [---]" ); } void EtesianEngine::roughLegalize( float minDisruption, unsigned options ){ @@ -695,7 +695,7 @@ namespace Etesian { ostringstream label; label.str(""); - label << " [" << setw(2) << setfill('0') << i << "] Bipart."; + label << " [" << setw(3) << setfill('0') << i << "] Bipart."; _progressReport1(label.str() ); upperWL = static_cast(get_HPWL_wirelength(_circuit, _placementUB)); @@ -709,7 +709,7 @@ namespace Etesian { auto solv = opt_problem + get_linear_pulling_forces( _circuit, _placementUB, _placementLB, pullingForce, 2.0f * linearDisruption); solve_linear_system( _circuit, _placementLB, solv, 200 ); // 200 iterations - _progressReport2(" Linear." ); + _progressReport2(" Linear." ); if(options & UpdateLB) _updatePlacement( _placementLB ); @@ -717,7 +717,7 @@ namespace Etesian { // Optimize orientation sometimes if (i%5 == 0) { optimize_exact_orientations( _circuit, _placementLB ); - _progressReport2(" Orient." ); + _progressReport2(" Orient." ); } lowerWL = static_cast(get_HPWL_wirelength(_circuit, _placementLB)); @@ -756,7 +756,7 @@ namespace Etesian { for ( int i=0; i