summaryrefslogtreecommitdiffstats
path: root/src/base/abci/abc.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2014-03-19 15:54:50 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2014-03-19 15:54:50 -0700
commitffa881bce2d4974f15a05bfa441e8dd1bf6b4c9e (patch)
tree92a049f98ee3cd4af70bd01c4c2d223a75bd4fea /src/base/abci/abc.c
parentc1fa07db4d44960e999e58788c01506faca774a7 (diff)
downloadabc-ffa881bce2d4974f15a05bfa441e8dd1bf6b4c9e.tar.gz
abc-ffa881bce2d4974f15a05bfa441e8dd1bf6b4c9e.tar.bz2
abc-ffa881bce2d4974f15a05bfa441e8dd1bf6b4c9e.zip
Experiments with recent ideas.
Diffstat (limited to 'src/base/abci/abc.c')
-rw-r--r--src/base/abci/abc.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c
index 2e024fc7..76412726 100644
--- a/src/base/abci/abc.c
+++ b/src/base/abci/abc.c
@@ -34054,7 +34054,7 @@ int Abc_CommandAbc9Test( Abc_Frame_t * pAbc, int argc, char ** argv )
// extern void Agi_ManTest( Gia_Man_t * pGia );
// extern void Gia_ManCheckFalseTest( Gia_Man_t * p, int nSlackMax );
// extern void Gia_ParTest( Gia_Man_t * p, int nWords, int nProcs );
- extern void Gia_ManTulipTest( Gia_Man_t * p, int nFrames, int nTimeOut, int fVerbose );
+ extern void Gia_ManTulipTest( Gia_Man_t * p, int nFrames, int nWords, int nTimeOut, int fSim, int fVerbose );
Extra_UtilGetoptReset();
while ( ( c = Extra_UtilGetopt( argc, argv, "WPFsvh" ) ) != EOF )
@@ -34158,12 +34158,14 @@ int Abc_CommandAbc9Test( Abc_Frame_t * pAbc, int argc, char ** argv )
// Jf_ManTestCnf( pAbc->pGia );
// Gia_ManCheckFalseTest( pAbc->pGia, nFrames );
// Gia_ParTest( pAbc->pGia, nWords, nProcs );
- Gia_ManTulipTest( pAbc->pGia, nFrames, 0, fVerbose );
+ Gia_ManTulipTest( pAbc->pGia, nFrames, nWords, 0, fSwitch, fVerbose );
+
return 0;
usage:
- Abc_Print( -2, "usage: &test [-F num] [-svh]\n" );
+ Abc_Print( -2, "usage: &test [-FW num] [-svh]\n" );
Abc_Print( -2, "\t testing various procedures\n" );
Abc_Print( -2, "\t-F num: the number of timeframes [default = %d]\n", nFrames );
+ Abc_Print( -2, "\t-W num: the number of machine words [default = %d]\n", nWords );
Abc_Print( -2, "\t-s : toggle enable (yes) vs. disable (no) [default = %s]\n", fSwitch? "yes": "no" );
Abc_Print( -2, "\t-v : toggle printing verbose information [default = %s]\n", fVerbose? "yes": "no" );
Abc_Print( -2, "\t-h : print the command usage\n");