Merge pull request #326 from wjrforcyber/resub_markB

Refactor(Resub): Clear markA/B at the beginning
This commit is contained in:
alanminko 2024-08-28 12:05:40 -07:00 committed by GitHub
commit 9371696a7b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -170,6 +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 markAB at the beginning
Abc_NtkCleanMarkAB( pNtk );
Abc_NtkForEachNode( pNtk, pNode, i )
{
Extra_ProgressBarUpdate( pProgress, i, NULL );