mirror of https://github.com/YosysHQ/abc.git
Refactor(Resub): Clear mark A/B
This commit is contained in:
parent
bcf292fdeb
commit
252afb1521
|
|
@ -170,9 +170,8 @@ int Abc_NtkResubstitute( Abc_Ntk_t * pNtk, int nCutMax, int nStepsMax, int nMinS
|
|||
pManRes->nNodesBeg = Abc_NtkNodeNum(pNtk);
|
||||
nNodes = Abc_NtkObjNumMax(pNtk);
|
||||
pProgress = Extra_ProgressBarStart( stdout, nNodes );
|
||||
//clear markB at the beginning
|
||||
Abc_NtkForEachObj( pNtk, pNode, i )
|
||||
pNode->fMarkB = 0;
|
||||
//clear markAB at the beginning
|
||||
Abc_NtkCleanMarkAB( pNtk );
|
||||
Abc_NtkForEachNode( pNtk, pNode, i )
|
||||
{
|
||||
Extra_ProgressBarUpdate( pProgress, i, NULL );
|
||||
|
|
|
|||
Loading…
Reference in New Issue