From 819c0ccab26eeb10451ebcb6bc6922e70d8191ac Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Mon, 29 Jun 2015 12:01:42 -0700 Subject: Making sure the CI/CO are not ordered by 'fraig_restore'. --- src/base/abci/abc.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/base/abci/abc.c') 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) ) -- cgit v1.2.3