diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2012-09-05 18:53:21 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2012-09-05 18:53:21 -0700 |
commit | c1f4545e073d27ac874103068f80a3e3162d3cd3 (patch) | |
tree | 12e90e3a2d7a01bcde00940deeb3715dbe4ad9ee | |
parent | 9cb16d654a4e0e2574869c31c9390a556524ffd8 (diff) | |
download | abc-c1f4545e073d27ac874103068f80a3e3162d3cd3.tar.gz abc-c1f4545e073d27ac874103068f80a3e3162d3cd3.tar.bz2 abc-c1f4545e073d27ac874103068f80a3e3162d3cd3.zip |
Added error message when the user is trying 'dsat' for multi-output comb miters.
-rw-r--r-- | src/aig/aig/aigObj.c | 2 | ||||
-rw-r--r-- | src/base/abci/abc.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/aig/aig/aigObj.c b/src/aig/aig/aigObj.c index 51989d0a..41a07823 100644 --- a/src/aig/aig/aigObj.c +++ b/src/aig/aig/aigObj.c @@ -130,7 +130,7 @@ Aig_Obj_t * Aig_ObjCreate( Aig_Man_t * p, Aig_Obj_t * pGhost ) } return pObj; } - + /**Function************************************************************* Synopsis [Connect the object to the fanin.] diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c index 874a1057..1196cc84 100644 --- a/src/base/abci/abc.c +++ b/src/base/abci/abc.c @@ -19704,13 +19704,13 @@ int Abc_CommandDSat( Abc_Frame_t * pAbc, int argc, char ** argv ) Abc_Print( -1, "Currently can only solve the miter for combinational circuits.\n" ); return 0; } -/* + if ( Abc_NtkPoNum(pNtk) != 1 ) { Abc_Print( -1, "Currently expects a single-output miter.\n" ); return 0; } -*/ + if ( !Abc_NtkIsStrash(pNtk) ) { Abc_Print( -1, "Currently only works for structurally hashed circuits.\n" ); |