From 0871bffae307e0553e0c5186336189e8b55cf6a6 Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Sun, 15 Feb 2009 08:01:00 -0800 Subject: Version abc90215 --- src/base/abci/abcSymm.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/base/abci/abcSymm.c') diff --git a/src/base/abci/abcSymm.c b/src/base/abci/abcSymm.c index 0f76065c..73f238f9 100644 --- a/src/base/abci/abcSymm.c +++ b/src/base/abci/abcSymm.c @@ -105,9 +105,9 @@ clkSym = clock() - clk; printf( "Statistics of BDD-based symmetry detection:\n" ); printf( "Algorithm = %s. Reordering = %s. Garbage collection = %s.\n", fNaive? "naive" : "fast", fReorder? "yes" : "no", fGarbCollect? "yes" : "no" ); -PRT( "Constructing BDDs", clkBdd ); -PRT( "Computing symms ", clkSym ); -PRT( "TOTAL ", clkBdd + clkSym ); +ABC_PRT( "Constructing BDDs", clkBdd ); +ABC_PRT( "Computing symms ", clkSym ); +ABC_PRT( "TOTAL ", clkBdd + clkSym ); } /**Function************************************************************* @@ -177,7 +177,7 @@ void Ntk_NetworkSymmsPrint( Abc_Ntk_t * pNtk, Extra_SymmInfo_t * pSymms ) pInputNames = Abc_NtkCollectCioNames( pNtk, 0 ); // alloc the array of marks - pVarTaken = ALLOC( int, nVars ); + pVarTaken = ABC_ALLOC( int, nVars ); memset( pVarTaken, 0, sizeof(int) * nVars ); // print the groups @@ -217,8 +217,8 @@ void Ntk_NetworkSymmsPrint( Abc_Ntk_t * pNtk, Extra_SymmInfo_t * pSymms ) } printf( "\n" ); - free( pInputNames ); - free( pVarTaken ); + ABC_FREE( pInputNames ); + ABC_FREE( pVarTaken ); } -- cgit v1.2.3