diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2008-08-02 08:01:00 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2008-08-02 08:01:00 -0700 |
commit | cbb7ff8642236fbc21576dec7b57b9e4cb7e60ef (patch) | |
tree | ae99229ba649fe84e3f1a895570c38601b4b68e4 /src/aig/dch/dch.h | |
parent | 582a059e34d913ed52dfc18049e407055ebd7879 (diff) | |
download | abc-cbb7ff8642236fbc21576dec7b57b9e4cb7e60ef.tar.gz abc-cbb7ff8642236fbc21576dec7b57b9e4cb7e60ef.tar.bz2 abc-cbb7ff8642236fbc21576dec7b57b9e4cb7e60ef.zip |
Version abc80802
Diffstat (limited to 'src/aig/dch/dch.h')
-rw-r--r-- | src/aig/dch/dch.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/aig/dch/dch.h b/src/aig/dch/dch.h index a9949821..9f6cfdca 100644 --- a/src/aig/dch/dch.h +++ b/src/aig/dch/dch.h @@ -44,7 +44,9 @@ struct Dch_Pars_t_ int nWords; // the number of simulation words int nBTLimit; // conflict limit at a node int nSatVarMax; // the max number of SAT variables + int fSynthesis; // set to 1 to perform synthesis int fVerbose; // verbose stats + int timeSynth; // synthesis runtime }; //////////////////////////////////////////////////////////////////////// @@ -56,8 +58,8 @@ struct Dch_Pars_t_ //////////////////////////////////////////////////////////////////////// /*=== dchCore.c ==========================================================*/ -extern void Dch_ManSetDefaultParams( Dch_Pars_t * p ); -extern Aig_Man_t * Dch_ComputeChoices( Vec_Ptr_t * vAigs, Dch_Pars_t * pPars ); +extern void Dch_ManSetDefaultParams( Dch_Pars_t * p ); +extern Aig_Man_t * Dch_ComputeChoices( Vec_Ptr_t * vAigs, Dch_Pars_t * pPars ); #ifdef __cplusplus |