mirror of
https://github.com/YosysHQ/abc.git
synced 2026-09-05 00:51:01 +02:00
Fixing time primtouts throughout the code.
This commit is contained in:
@@ -1716,7 +1716,8 @@ void Gia_GlaSendCancel( Gla_Man_t * p, int fVerbose )
|
||||
***********************************************************************/
|
||||
void Gia_GlaDumpAbsracted( Gla_Man_t * p, int fVerbose )
|
||||
{
|
||||
char * pFileName = p->pPars->pFileVabs ? p->pPars->pFileVabs : "glabs.aig";
|
||||
char * pFileNameDef = "glabs.aig";
|
||||
char * pFileName = p->pPars->pFileVabs ? p->pPars->pFileVabs : pFileNameDef;
|
||||
Gia_Man_t * pAbs;
|
||||
Vec_Int_t * vGateClasses;
|
||||
if ( fVerbose )
|
||||
|
||||
@@ -1475,7 +1475,8 @@ void Gia_VtaSendCancel( Vta_Man_t * p, int fVerbose )
|
||||
***********************************************************************/
|
||||
void Gia_VtaDumpAbsracted( Vta_Man_t * p, int fVerbose )
|
||||
{
|
||||
char * pFileName = p->pPars->pFileVabs ? p->pPars->pFileVabs : "vabs.aig";
|
||||
char * pFileNameDef = "vabs.aig";
|
||||
char * pFileName = p->pPars->pFileVabs ? p->pPars->pFileVabs : pFileNameDef;
|
||||
Gia_Man_t * pAbs;
|
||||
if ( fVerbose )
|
||||
Abc_Print( 1, "Dumping abstracted model into file \"%s\"...\n", pFileName );
|
||||
|
||||
Reference in New Issue
Block a user