summaryrefslogtreecommitdiffstats
path: root/src/base/abci
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2013-10-31 16:36:08 -0400
committerAlan Mishchenko <alanmi@berkeley.edu>2013-10-31 16:36:08 -0400
commit313caa456a4b15af0673c6729d7eeb299544a13e (patch)
tree9e2ffc58254c2f60b84a8d24b8da851654cffa8e /src/base/abci
parent6582e10a82b705981344f41953e39dc85612b530 (diff)
downloadabc-313caa456a4b15af0673c6729d7eeb299544a13e.tar.gz
abc-313caa456a4b15af0673c6729d7eeb299544a13e.tar.bz2
abc-313caa456a4b15af0673c6729d7eeb299544a13e.zip
False path detection.
Diffstat (limited to 'src/base/abci')
-rw-r--r--src/base/abci/abc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c
index 62422a2c..075dd9ca 100644
--- a/src/base/abci/abc.c
+++ b/src/base/abci/abc.c
@@ -33977,7 +33977,7 @@ int Abc_CommandAbc9Test( Abc_Frame_t * pAbc, int argc, char ** argv )
{
// Gia_Man_t * pTemp = NULL;
int c, fVerbose = 0;
- int nFrames = 10;
+ int nFrames = 0;
int fSwitch = 0;
// extern Gia_Man_t * Gia_VtaTest( Gia_Man_t * p );
// extern int Gia_ManSuppSizeTest( Gia_Man_t * p );
@@ -33998,7 +33998,8 @@ int Abc_CommandAbc9Test( Abc_Frame_t * pAbc, int argc, char ** argv )
// extern Gia_Man_t * Gia_ManInterTest( Gia_Man_t * p );
// extern Gia_Man_t * Llb_ReachableStatesGia( Gia_Man_t * p );
// extern Gia_Man_t * Unm_ManTest( Gia_Man_t * pGia );
- extern void Agi_ManTest( Gia_Man_t * pGia );
+// extern void Agi_ManTest( Gia_Man_t * pGia );
+ extern void Gia_ManCheckFalseTest( Gia_Man_t * p, int nSlackMax );
Extra_UtilGetoptReset();
while ( ( c = Extra_UtilGetopt( argc, argv, "Fsvh" ) ) != EOF )
@@ -34078,6 +34079,7 @@ int Abc_CommandAbc9Test( Abc_Frame_t * pAbc, int argc, char ** argv )
// Agi_ManTest( pAbc->pGia );
// Gia_ManResubTest( pAbc->pGia );
// Jf_ManTestCnf( pAbc->pGia );
+ Gia_ManCheckFalseTest( pAbc->pGia, nFrames );
return 0;
usage:
Abc_Print( -2, "usage: &test [-F num] [-svh]\n" );