summaryrefslogtreecommitdiffstats
path: root/src/base/cmd
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2007-03-30 08:01:00 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2007-03-30 08:01:00 -0700
commit028138a76eb74eee80f1d9592f43bdbe0d4c3d6c (patch)
tree99371b5ea7fded49c4b914b0cb6e207fb580b2cf /src/base/cmd
parent4da784c049b79b76d8c1b82297bd27f45ead9377 (diff)
downloadabc-028138a76eb74eee80f1d9592f43bdbe0d4c3d6c.tar.gz
abc-028138a76eb74eee80f1d9592f43bdbe0d4c3d6c.tar.bz2
abc-028138a76eb74eee80f1d9592f43bdbe0d4c3d6c.zip
Version abc70330
Diffstat (limited to 'src/base/cmd')
-rw-r--r--src/base/cmd/cmd.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/base/cmd/cmd.c b/src/base/cmd/cmd.c
index 845f9d77..2dc03d5c 100644
--- a/src/base/cmd/cmd.c
+++ b/src/base/cmd/cmd.c
@@ -1265,6 +1265,8 @@ int CmdCommandSis( Abc_Frame_t * pAbc, int argc, char **argv )
}
// write out the current network
+ if ( Abc_NtkIsLogic(pNtk) )
+ Abc_NtkToSop(pNtk, 0);
pNetlist = Abc_NtkToNetlist(pNtk);
if ( pNetlist == NULL )
{
@@ -1406,6 +1408,8 @@ int CmdCommandMvsis( Abc_Frame_t * pAbc, int argc, char **argv )
}
// write out the current network
+ if ( Abc_NtkIsLogic(pNtk) )
+ Abc_NtkToSop(pNtk, 0);
pNetlist = Abc_NtkToNetlist(pNtk);
if ( pNetlist == NULL )
{
@@ -1552,6 +1556,8 @@ int CmdCommandCapo( Abc_Frame_t * pAbc, int argc, char **argv )
}
// write out the current network
+ if ( Abc_NtkIsLogic(pNtk) )
+ Abc_NtkToSop(pNtk, 0);
pNetlist = Abc_NtkToNetlist(pNtk);
if ( pNetlist == NULL )
{