Some psychotic correction in alignement of displayed messages.

This commit is contained in:
Jean-Paul Chaput 2016-08-27 16:03:15 +02:00
parent ebc4a0cdbf
commit e2316578f2
1 changed files with 10 additions and 10 deletions

View File

@ -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<float_t>(get_HPWL_wirelength(_circuit, _placementUB));
@ -756,7 +756,7 @@ namespace Etesian {
for ( int i=0; i<iterations; ++i ){
ostringstream label;
label.str("");
label << " [" << setw(2) << setfill('0') << i << "]";
label << " [" << setw(3) << setfill('0') << i << "]";
optimize_x_orientations( _circuit, _placementUB ); // Don't disrupt VDD/VSS connections in a row
_progressReport1(label.str()+" Oriented ......." );