mirror of https://github.com/YosysHQ/abc.git
Refactor(Resub): Clear markB at the beginning
This commit is contained in:
parent
64ed5b81a4
commit
bcf292fdeb
|
|
@ -170,6 +170,9 @@ 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;
|
||||
Abc_NtkForEachNode( pNtk, pNode, i )
|
||||
{
|
||||
Extra_ProgressBarUpdate( pProgress, i, NULL );
|
||||
|
|
|
|||
Loading…
Reference in New Issue