mirror of https://github.com/YosysHQ/abc.git
Removing a global variable in resub.
This commit is contained in:
parent
7e501b9b02
commit
bb4378934d
|
|
@ -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;
|
||||
|
||||
////////////////////////////////////////////////////////////////////////
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue