Passing names in &scorr.

This commit is contained in:
Alan Mishchenko 2019-02-18 17:05:03 -08:00
parent 7143ad4d87
commit 7cabc26ebb
1 changed files with 5 additions and 0 deletions

View File

@ -1217,6 +1217,11 @@ Gia_Man_t * Cec_ManLSCorrespondence( Gia_Man_t * pAig, Cec_ParCor_t * pPars )
else
Cec_ManPrintFlopEquivs( pAig );
}
// copy names if present
if ( pAig->vNamesIn )
pNew->vNamesIn = Vec_PtrDupStr( pAig->vNamesIn );
if ( pAig->vNamesOut )
pNew->vNamesOut = Vec_PtrDupStr( pAig->vNamesOut );
return pNew;
}