summaryrefslogtreecommitdiffstats
path: root/src/map/cov/covCore.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2012-07-07 17:46:54 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2012-07-07 17:46:54 -0700
commit3aab7245738a69f1dd4d898493d5dabf6596ea61 (patch)
tree16a23107ca27a250e82c492dcdd1a2bea640cff6 /src/map/cov/covCore.c
parent16d96fcf533fb77ff4a45992991e38ac7ea74bb3 (diff)
downloadabc-3aab7245738a69f1dd4d898493d5dabf6596ea61.tar.gz
abc-3aab7245738a69f1dd4d898493d5dabf6596ea61.tar.bz2
abc-3aab7245738a69f1dd4d898493d5dabf6596ea61.zip
Fixing time primtouts throughout the code.
Diffstat (limited to 'src/map/cov/covCore.c')
-rw-r--r--src/map/cov/covCore.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/map/cov/covCore.c b/src/map/cov/covCore.c
index f40e908a..1a1d025f 100644
--- a/src/map/cov/covCore.c
+++ b/src/map/cov/covCore.c
@@ -108,7 +108,8 @@ Abc_Ntk_t * Abc_NtkSopEsopCover( Abc_Ntk_t * pNtk, int nFaninMax, int fUseEsop,
void Abc_NtkCovCovers( Cov_Man_t * p, Abc_Ntk_t * pNtk, int fVerbose )
{
Abc_Obj_t * pObj;
- int i, clk = clock();
+ int i;
+ clock_t clk = clock();
// start the manager
p->vFanCounts = Abc_NtkFanoutCounts(pNtk);
@@ -154,7 +155,8 @@ int Abc_NtkCovCoversOne( Cov_Man_t * p, Abc_Ntk_t * pNtk, int fVerbose )
ProgressBar * pProgress;
Abc_Obj_t * pObj;
Vec_Ptr_t * vBoundary;
- int i, clk = clock();
+ int i;
+ clock_t clk = clock();
int Counter = 0;
int fStop = 1;