summaryrefslogtreecommitdiffstats
path: root/src/base/abci/abc.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2015-06-29 12:01:42 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2015-06-29 12:01:42 -0700
commit819c0ccab26eeb10451ebcb6bc6922e70d8191ac (patch)
tree2536522dffcfa22f69cf88adf58084619db28a97 /src/base/abci/abc.c
parentb4d0abb77d4ba5a89564233736522c3497d946ee (diff)
downloadabc-819c0ccab26eeb10451ebcb6bc6922e70d8191ac.tar.gz
abc-819c0ccab26eeb10451ebcb6bc6922e70d8191ac.tar.bz2
abc-819c0ccab26eeb10451ebcb6bc6922e70d8191ac.zip
Making sure the CI/CO are not ordered by 'fraig_restore'.
Diffstat (limited to 'src/base/abci/abc.c')
-rw-r--r--src/base/abci/abc.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c
index c6e252a0..0cd325ab 100644
--- a/src/base/abci/abc.c
+++ b/src/base/abci/abc.c
@@ -16751,7 +16751,7 @@ int Abc_CommandInit( Abc_Frame_t * pAbc, int argc, char ** argv )
if ( Abc_NtkIsComb(pNtk) )
{
- Abc_Print( -1, "The current network is combinational.\n" );
+ Abc_Print( 0, "The current network is combinational.\n" );
return 0;
}
@@ -16882,7 +16882,7 @@ int Abc_CommandZero( Abc_Frame_t * pAbc, int argc, char ** argv )
if ( Abc_NtkIsComb(pNtk) )
{
- Abc_Print( -1, "The current network is combinational.\n" );
+ Abc_Print( 0, "The current network is combinational.\n" );
return 0;
}
@@ -16978,7 +16978,7 @@ int Abc_CommandUndc( Abc_Frame_t * pAbc, int argc, char ** argv )
if ( Abc_NtkIsComb(pNtk) )
{
- Abc_Print( -1, "The current network is combinational.\n" );
+ Abc_Print( 0, "The current network is combinational.\n" );
return 0;
}
@@ -17037,7 +17037,7 @@ int Abc_CommandOneHot( Abc_Frame_t * pAbc, int argc, char ** argv )
}
if ( Abc_NtkIsComb(pNtk) )
{
- Abc_Print( -1, "The current network is combinational.\n" );
+ Abc_Print( 0, "The current network is combinational.\n" );
return 0;
}
if ( !Abc_NtkIsLogic(pNtk) )
@@ -17113,7 +17113,7 @@ int Abc_CommandPipe( Abc_Frame_t * pAbc, int argc, char ** argv )
if ( Abc_NtkIsComb(pNtk) )
{
- Abc_Print( -1, "The current network is combinational.\n" );
+ Abc_Print( 0, "The current network is combinational.\n" );
return 0;
}
@@ -23404,7 +23404,7 @@ int Abc_CommandTempor( Abc_Frame_t * pAbc, int argc, char ** argv )
}
if ( Abc_NtkLatchNum(pNtk) == 0 )
{
- Abc_Print( -2, "The current network is combinational.\n");
+ Abc_Print( 0, "The current network is combinational.\n");
return 0;
}
if ( fUpdateCex )
@@ -24602,7 +24602,7 @@ int Abc_CommandPdr( Abc_Frame_t * pAbc, int argc, char ** argv )
}
if ( Abc_NtkLatchNum(pNtk) == 0 )
{
- Abc_Print( -2, "The current network is combinational.\n");
+ Abc_Print( 0, "The current network is combinational.\n");
return 0;
}
if ( !Abc_NtkIsStrash(pNtk) )