Commit 9e307901 by Alan Mishchenko

Added support for constraints in AIGER (bug fix).

parent 76447062
...@@ -897,8 +897,13 @@ Gia_Man_t * Gia_ReadAigerFromMemory( char * pContents, int nFileSize, int fCheck ...@@ -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;
} }
......
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