summaryrefslogtreecommitdiffstats
path: root/src/bool/bdc/bdcInt.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/bool/bdc/bdcInt.h')
-rw-r--r--src/bool/bdc/bdcInt.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/bool/bdc/bdcInt.h b/src/bool/bdc/bdcInt.h
index 05ce20b6..cca10957 100644
--- a/src/bool/bdc/bdcInt.h
+++ b/src/bool/bdc/bdcInt.h
@@ -118,11 +118,11 @@ struct Bdc_Man_t_
int numWeaks;
int numReuse;
// runtime
- int timeCache;
- int timeCheck;
- int timeMuxes;
- int timeSupps;
- int timeTotal;
+ clock_t timeCache;
+ clock_t timeCheck;
+ clock_t timeMuxes;
+ clock_t timeSupps;
+ clock_t timeTotal;
};
static inline Bdc_Fun_t * Bdc_FunNew( Bdc_Man_t * p ) { Bdc_Fun_t * pRes; if ( p->nNodes >= p->nNodesAlloc || p->nNodesNew >= p->nNodesMax ) return NULL; pRes = p->pNodes + p->nNodes++; p->nNodesNew++; memset( pRes, 0, sizeof(Bdc_Fun_t) ); return pRes; }