mirror of https://github.com/YosysHQ/abc.git
Fixing time primtouts throughout the code.
This commit is contained in:
parent
ea98a2497e
commit
b0ef0aaf00
|
|
@ -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 );
|
||||
|
|
|
|||
Loading…
Reference in New Issue