summaryrefslogtreecommitdiffstats
path: root/src/base/wlc/wlcShow.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2017-02-08 14:10:08 -0800
committerAlan Mishchenko <alanmi@berkeley.edu>2017-02-08 14:10:08 -0800
commitde4bf41c53665ca8389d74b15be24ab407e8ff65 (patch)
tree396974592671a96894fd14e45fe40c0f7a574a82 /src/base/wlc/wlcShow.c
parent80f5070dbe270f7b1e90df07c5f52c46f0c0c969 (diff)
downloadabc-de4bf41c53665ca8389d74b15be24ab407e8ff65.tar.gz
abc-de4bf41c53665ca8389d74b15be24ab407e8ff65.tar.bz2
abc-de4bf41c53665ca8389d74b15be24ab407e8ff65.zip
New command &satoko.
Diffstat (limited to 'src/base/wlc/wlcShow.c')
-rw-r--r--src/base/wlc/wlcShow.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/wlc/wlcShow.c b/src/base/wlc/wlcShow.c
index 7914cd7a..1601d602 100644
--- a/src/base/wlc/wlcShow.c
+++ b/src/base/wlc/wlcShow.c
@@ -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) > 1000 )
+ if ( Wlc_NtkObjNum(p) > 2000 )
{
- fprintf( stdout, "Cannot visualize WLC with more than %d nodes.\n", 1000 );
+ fprintf( stdout, "Cannot visualize WLC with more than %d nodes.\n", 2000 );
return;
}
if ( (pFile = fopen( pFileName, "w" )) == NULL )