Commit f701a0c6 by Alan Mishchenko

Commenting out &mfs report message.

parent c2b805dc
......@@ -451,6 +451,7 @@ Gia_Man_t * Gia_ManPerformMfs( Gia_Man_t * p, Sfm_Par_t * pPars )
nNodes = Sfm_NtkPerform( pNtk, pPars );
if ( nNodes == 0 )
{
if ( p->pManTime )
Abc_Print( 1, "The network is not changed by \"&mfs\".\n" );
pNew = Gia_ManDup( p );
pNew->vMapping = Vec_IntDup( p->vMapping );
......
......@@ -49,9 +49,9 @@ void Wlc_NtkDumpDot( Wlc_Ntk_t * p, char * pFileName, Vec_Int_t * vBold )
Wlc_Obj_t * pNode;
int LevelMax, Prev, Level, i;
if ( Wlc_NtkObjNum(p) > 500 )
if ( Wlc_NtkObjNum(p) > 1000 )
{
fprintf( stdout, "Cannot visualize WLC with more than %d nodes.\n", 500 );
fprintf( stdout, "Cannot visualize WLC with more than %d nodes.\n", 1000 );
return;
}
if ( (pFile = fopen( pFileName, "w" )) == NULL )
......
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