summaryrefslogtreecommitdiffstats
path: root/src/base/abci/abc.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2005-09-11 08:01:00 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2005-09-11 08:01:00 -0700
commit798bbfc5a9b6f7dd5b47425c8c7026762451b0ba (patch)
treedf3f0a05afac0050211b39844120928cd3e4da25 /src/base/abci/abc.c
parente52e48c3643b0a69ee84291634d5a31956d183db (diff)
downloadabc-798bbfc5a9b6f7dd5b47425c8c7026762451b0ba.tar.gz
abc-798bbfc5a9b6f7dd5b47425c8c7026762451b0ba.tar.bz2
abc-798bbfc5a9b6f7dd5b47425c8c7026762451b0ba.zip
Version abc50911
Diffstat (limited to 'src/base/abci/abc.c')
-rw-r--r--src/base/abci/abc.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c
index c4feb7a2..f2cfaaf1 100644
--- a/src/base/abci/abc.c
+++ b/src/base/abci/abc.c
@@ -3939,6 +3939,12 @@ int Abc_CommandSeq( Abc_Frame_t * pAbc, int argc, char ** argv )
return 1;
}
+ if ( Abc_NtkCountSelfFeedLatches(pNtk) )
+ {
+ fprintf( pErr, "Works AIG has self-feeding latches. Cannot continue.\n" );
+ return 1;
+ }
+
// get the new network
pNtkRes = Abc_NtkAigToSeq( pNtk );
if ( pNtkRes == NULL )