summaryrefslogtreecommitdiffstats
path: root/src/bdd/reo/reoProfile.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2011-03-08 20:07:52 -0800
committerAlan Mishchenko <alanmi@berkeley.edu>2011-03-08 20:07:52 -0800
commit35f90a777dd92e7647689b93db09ca068cca87a2 (patch)
tree1ebaebd7891228e74da47f73ff040c04ea5a2cd0 /src/bdd/reo/reoProfile.c
parent24f0da1475c715a1daa57fd20159c438728a8fc2 (diff)
downloadabc-35f90a777dd92e7647689b93db09ca068cca87a2.tar.gz
abc-35f90a777dd92e7647689b93db09ca068cca87a2.tar.bz2
abc-35f90a777dd92e7647689b93db09ca068cca87a2.zip
Mffc-based structural decomposition of the network and bug fixes in reordering package.
Diffstat (limited to 'src/bdd/reo/reoProfile.c')
-rw-r--r--src/bdd/reo/reoProfile.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bdd/reo/reoProfile.c b/src/bdd/reo/reoProfile.c
index 68d4b3cc..037e3202 100644
--- a/src/bdd/reo/reoProfile.c
+++ b/src/bdd/reo/reoProfile.c
@@ -200,7 +200,7 @@ void reoProfileWidthStart( reo_man * p )
p->pPlanes[v].statsWidth = p->pPlanes[v-1].statsWidth + pWidthStart[v] - pWidthStop[v];
p->pPlanes[v].statsCost = p->pPlanes[v].statsWidth;
p->nWidthCur += p->pPlanes[v].statsWidth;
-// printf( "Level %2d: Width = %5d. Correct = %d.\n", v, Temp, p->pPlanes[v].statsWidth );
+ printf( "Level %2d: Width = %5d.\n", v, p->pPlanes[v].statsWidth );
}
p->nWidthBeg = p->nWidthCur;
ABC_FREE( pWidthStart );
@@ -328,13 +328,13 @@ void reoProfileWidthPrint( reo_man * p )
TotalWidth = 0;
for ( i = 0; i <= p->nSupp; i++ )
{
-// printf( "Level = %2d. Width = %3d.\n", i, p->pProfile[i] );
+ printf( "Level = %2d. Width = %3d.\n", i, p->pPlanes[i].statsWidth );
if ( WidthMax < p->pPlanes[i].statsWidth )
WidthMax = p->pPlanes[i].statsWidth;
TotalWidth += p->pPlanes[i].statsWidth;
}
assert( p->nWidthCur == TotalWidth );
- printf( "WIDTH: " );
+ printf( "WIDTH: " );
printf( "Maximum = %5d. ", WidthMax );
printf( "Total = %7d. ", p->nWidthCur );
printf( "Average = %6.2f.\n", TotalWidth / (float)p->nSupp );