From 3db1557f45b03875a0a0b8adddcc15c4565895d2 Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Sun, 11 Jun 2006 08:01:00 -0700 Subject: Version abc60611 --- src/opt/rwr/rwrMan.c | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) (limited to 'src/opt/rwr/rwrMan.c') diff --git a/src/opt/rwr/rwrMan.c b/src/opt/rwr/rwrMan.c index 115065f5..b6d58d99 100644 --- a/src/opt/rwr/rwrMan.c +++ b/src/opt/rwr/rwrMan.c @@ -163,7 +163,11 @@ void Rwr_ManPrintStats( Rwr_Man_t * p ) printf( "The scores are:\n" ); for ( i = 0; i < 222; i++ ) if ( p->nScores[i] > 0 ) - printf( "%3d = %8d canon = %5d\n", i, p->nScores[i], p->pMapInv[i] ); + { + extern void Ivy_TruthDsdComputePrint( unsigned uTruth ); + printf( "%3d = %8d canon = %5d ", i, p->nScores[i], p->pMapInv[i] ); + Ivy_TruthDsdComputePrint( (unsigned)p->pMapInv[i] | ((unsigned)p->pMapInv[i] << 16) ); + } printf( "\n" ); } @@ -207,6 +211,22 @@ void * Rwr_ManReadDecs( Rwr_Man_t * p ) return p->pGraph; } +/**Function************************************************************* + + Synopsis [Stops the resynthesis manager.] + + Description [] + + SideEffects [] + + SeeAlso [] + +***********************************************************************/ +Vec_Ptr_t * Rwr_ManReadLeaves( Rwr_Man_t * p ) +{ + return p->vFanins; +} + /**Function************************************************************* Synopsis [Stops the resynthesis manager.] -- cgit v1.2.3