mirror of https://github.com/YosysHQ/abc.git
Passing names in &scorr.
This commit is contained in:
parent
7143ad4d87
commit
7cabc26ebb
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue