summaryrefslogtreecommitdiffstats
path: root/src/base/abci
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2013-04-28 19:17:59 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2013-04-28 19:17:59 -0700
commit3b1ebbaa281578ee8b0ef0e62b495dbbaf1f18e1 (patch)
tree0853de28ff7a5406d3c9be2f1a7181d648a640fb /src/base/abci
parent9e1765216ba5f64d89a0dc93e33fb95c84a0c779 (diff)
downloadabc-3b1ebbaa281578ee8b0ef0e62b495dbbaf1f18e1.tar.gz
abc-3b1ebbaa281578ee8b0ef0e62b495dbbaf1f18e1.tar.bz2
abc-3b1ebbaa281578ee8b0ef0e62b495dbbaf1f18e1.zip
SAT sweeping under constraints.
Diffstat (limited to 'src/base/abci')
-rw-r--r--src/base/abci/abc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c
index 239771b5..b18704f7 100644
--- a/src/base/abci/abc.c
+++ b/src/base/abci/abc.c
@@ -22161,7 +22161,7 @@ int Abc_CommandConstr( Abc_Frame_t * pAbc, int argc, char ** argv )
if ( nConstrs > 0 )
{
if ( Abc_NtkIsComb(pNtk) )
- Abc_Print( -1, "The network is combinational.\n" );
+ Abc_Print( 0, "The network is combinational.\n" );
if ( Abc_NtkConstrNum(pNtk) > 0 )
{
Abc_Print( -1, "The network already has constraints.\n" );
@@ -22172,7 +22172,7 @@ int Abc_CommandConstr( Abc_Frame_t * pAbc, int argc, char ** argv )
Abc_Print( -1, "The number of constraints specified (%d) should be less than POs (%d).\n", nConstrs, Abc_NtkPoNum(pNtk) );
return 0;
}
- Abc_Print( 0, "Considering the last %d POs as constraint outputs.\n", nConstrs );
+ Abc_Print( 1, "Setting the last %d POs as constraint outputs.\n", nConstrs );
pNtk->nConstrs = nConstrs;
return 0;
}