Commit 7cabc26e by Alan Mishchenko

Passing names in &scorr.

parent 7143ad4d
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment