summaryrefslogtreecommitdiffstats
path: root/src/base/cmd/cmd.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2015-02-11 12:33:54 -0800
committerAlan Mishchenko <alanmi@berkeley.edu>2015-02-11 12:33:54 -0800
commit8cabdcb55d0a390ea45cfed631118af35796dac2 (patch)
treed99136a3c378b1115daf236b8d272f9deec4b90d /src/base/cmd/cmd.c
parent72dbdee2023a86006f67b95027fe6acb841328c4 (diff)
downloadabc-8cabdcb55d0a390ea45cfed631118af35796dac2.tar.gz
abc-8cabdcb55d0a390ea45cfed631118af35796dac2.tar.bz2
abc-8cabdcb55d0a390ea45cfed631118af35796dac2.zip
Adding resource limit switch -C to 'sop'.
Diffstat (limited to 'src/base/cmd/cmd.c')
-rw-r--r--src/base/cmd/cmd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/base/cmd/cmd.c b/src/base/cmd/cmd.c
index 42274433..35e028c1 100644
--- a/src/base/cmd/cmd.c
+++ b/src/base/cmd/cmd.c
@@ -1907,7 +1907,7 @@ int CmdCommandSis( Abc_Frame_t * pAbc, int argc, char **argv )
// write out the current network
if ( Abc_NtkIsLogic(pNtk) )
- Abc_NtkToSop(pNtk, 0);
+ Abc_NtkToSop(pNtk, 0, ABC_INFINITY);
pNetlist = Abc_NtkToNetlist(pNtk);
if ( pNetlist == NULL )
{
@@ -2049,7 +2049,7 @@ int CmdCommandMvsis( Abc_Frame_t * pAbc, int argc, char **argv )
// write out the current network
if ( Abc_NtkIsLogic(pNtk) )
- Abc_NtkToSop(pNtk, 0);
+ Abc_NtkToSop(pNtk, 0, ABC_INFINITY);
pNetlist = Abc_NtkToNetlist(pNtk);
if ( pNetlist == NULL )
{
@@ -2263,7 +2263,7 @@ int CmdCommandCapo( Abc_Frame_t * pAbc, int argc, char **argv )
// write out the current network
if ( Abc_NtkIsLogic(pNtk) )
- Abc_NtkToSop(pNtk, 0);
+ Abc_NtkToSop(pNtk, 0, ABC_INFINITY);
pNetlist = Abc_NtkToNetlist(pNtk);
if ( pNetlist == NULL )
{