Removing a global variable in resub.

This commit is contained in:
Alan Mishchenko 2023-05-13 13:53:59 -07:00
parent 7e501b9b02
commit bb4378934d
2 changed files with 3 additions and 3 deletions

View File

@ -46,7 +46,7 @@ ABC_NAMESPACE_IMPL_START
abctime s_MappingTime = 0;
int s_MappingMem = 0;
abctime s_ResubTime = 0;
//abctime s_ResubTime = 0;
abctime s_ResynTime = 0;
////////////////////////////////////////////////////////////////////////

View File

@ -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 int Abc_CutVolumeCheck( Abc_Obj_t * pNode, Vec_Ptr_t * vLeaves );
extern abctime s_ResubTime;
//extern abctime s_ResubTime;
////////////////////////////////////////////////////////////////////////
/// FUNCTION DEFINITIONS ///
@ -271,7 +271,7 @@ pManRes->timeTotal = Abc_Clock() - clkStart;
printf( "Abc_NtkRefactor: The network check has failed.\n" );
return 0;
}
s_ResubTime = Abc_Clock() - clkStart;
//s_ResubTime = Abc_Clock() - clkStart;
return 1;
}