diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2015-02-19 12:57:05 -0800 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2015-02-19 12:57:05 -0800 |
commit | e3f87e189c880251c579b9fd22c04ca70b80f63d (patch) | |
tree | 0bab7a609e4191f65821009fd782351031444d27 /src/base/cmd | |
parent | ba6095ce610ce582dd390fadcdc3ae7a71c66f7d (diff) | |
download | abc-e3f87e189c880251c579b9fd22c04ca70b80f63d.tar.gz abc-e3f87e189c880251c579b9fd22c04ca70b80f63d.tar.bz2 abc-e3f87e189c880251c579b9fd22c04ca70b80f63d.zip |
Propagating changes after updating flag of 'sop'.
Diffstat (limited to 'src/base/cmd')
-rw-r--r-- | src/base/cmd/cmd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/base/cmd/cmd.c b/src/base/cmd/cmd.c index 35e028c1..8b536a5f 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_INFINITY); + Abc_NtkToSop(pNtk, -1, 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_INFINITY); + Abc_NtkToSop(pNtk, -1, 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_INFINITY); + Abc_NtkToSop(pNtk, -1, ABC_INFINITY); pNetlist = Abc_NtkToNetlist(pNtk); if ( pNetlist == NULL ) { |