mirror of https://github.com/YosysHQ/abc.git
Added support for constraints in AIGER (bug fix).
This commit is contained in:
parent
76447062cc
commit
9e307901c7
|
|
@ -897,8 +897,13 @@ Gia_Man_t * Gia_ReadAigerFromMemory( char * pContents, int nFileSize, int fCheck
|
||||||
Vec_IntFreeP( &vPoTypes );
|
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;
|
return pNew;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue