Go to the source code of this file.
◆ Ivy_ManShow()
FUNCTION DEFINITIONS ///.
Function*************************************************************
Synopsis []
Description []
SideEffects []
SeeAlso []
Definition at line 47 of file ivyShow.c.
48{
49 extern void Abc_ShowFile(
char * FileNameDot,
int fKeepDot );
50 static int Counter = 0;
51 char FileNameDot[200];
52 FILE * pFile;
53
54
55 sprintf( FileNameDot,
"temp%02d.dot", Counter++ );
56
57 if ( (pFile = fopen( FileNameDot, "w" )) == NULL )
58 {
59 fprintf( stdout, "Cannot open the intermediate file \"%s\".\n", FileNameDot );
60 return;
61 }
62 fclose( pFile );
63
64 Ivy_WriteDotAig( pMan, FileNameDot, fHaig, vBold );
65
67}
ABC_NAMESPACE_IMPL_START void Abc_ShowFile(char *FileNameDot, int fKeepDot)
DECLARATIONS ///.