Commit bb437893 by Alan Mishchenko

Removing a global variable in resub.

parent 7e501b9b
...@@ -46,7 +46,7 @@ ABC_NAMESPACE_IMPL_START ...@@ -46,7 +46,7 @@ ABC_NAMESPACE_IMPL_START
abctime s_MappingTime = 0; abctime s_MappingTime = 0;
int s_MappingMem = 0; int s_MappingMem = 0;
abctime s_ResubTime = 0; //abctime s_ResubTime = 0;
abctime s_ResynTime = 0; abctime s_ResynTime = 0;
//////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////
......
...@@ -117,7 +117,7 @@ static Dec_Graph_t * Abc_ManResubDivs3( Abc_ManRes_t * p, int Required ); ...@@ -117,7 +117,7 @@ static Dec_Graph_t * Abc_ManResubDivs3( Abc_ManRes_t * p, int Required );
static Vec_Ptr_t * Abc_CutFactorLarge( Abc_Obj_t * pNode, int nLeavesMax ); static Vec_Ptr_t * Abc_CutFactorLarge( Abc_Obj_t * pNode, int nLeavesMax );
static int Abc_CutVolumeCheck( Abc_Obj_t * pNode, Vec_Ptr_t * vLeaves ); static int Abc_CutVolumeCheck( Abc_Obj_t * pNode, Vec_Ptr_t * vLeaves );
extern abctime s_ResubTime; //extern abctime s_ResubTime;
//////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////
/// FUNCTION DEFINITIONS /// /// FUNCTION DEFINITIONS ///
...@@ -271,7 +271,7 @@ pManRes->timeTotal = Abc_Clock() - clkStart; ...@@ -271,7 +271,7 @@ pManRes->timeTotal = Abc_Clock() - clkStart;
printf( "Abc_NtkRefactor: The network check has failed.\n" ); printf( "Abc_NtkRefactor: The network check has failed.\n" );
return 0; return 0;
} }
s_ResubTime = Abc_Clock() - clkStart; //s_ResubTime = Abc_Clock() - clkStart;
return 1; return 1;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment