mirror of
https://github.com/YosysHQ/abc.git
synced 2026-09-06 09:07:01 +02:00
Added support for constraints in AIGER (bug fix).
This commit is contained in:
@@ -897,8 +897,13 @@ Gia_Man_t * Gia_ReadAigerFromMemory( char * pContents, int nFileSize, int fCheck
|
||||
Vec_IntFreeP( &vPoTypes );
|
||||
}
|
||||
|
||||
// pNew = Gia_ManCleanup( pTemp = pNew );
|
||||
// Gia_ManStop( pTemp );
|
||||
{
|
||||
Vec_Int_t * vFlopMap;
|
||||
vFlopMap = pNew->vFlopClasses; pNew->vFlopClasses = NULL;
|
||||
pNew = Gia_ManCleanup( pTemp = pNew );
|
||||
Gia_ManStop( pTemp );
|
||||
pNew->vFlopClasses = vFlopMap;
|
||||
}
|
||||
return pNew;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user