diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2012-07-07 18:15:08 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2012-07-07 18:15:08 -0700 |
commit | 4760983a461142eacceeed45ddcf5598e6a389a2 (patch) | |
tree | 87afc6370242742e1571cc42ff7824a9d8ce722f /src/proof/int | |
parent | 3aab7245738a69f1dd4d898493d5dabf6596ea61 (diff) | |
download | abc-4760983a461142eacceeed45ddcf5598e6a389a2.tar.gz abc-4760983a461142eacceeed45ddcf5598e6a389a2.tar.bz2 abc-4760983a461142eacceeed45ddcf5598e6a389a2.zip |
Fixing time primtouts throughout the code.
Diffstat (limited to 'src/proof/int')
-rw-r--r-- | src/proof/int/intM114p.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/proof/int/intM114p.c b/src/proof/int/intM114p.c index f143dc39..ad1ff61d 100644 --- a/src/proof/int/intM114p.c +++ b/src/proof/int/intM114p.c @@ -394,7 +394,8 @@ int Inter_ManPerformOneStepM114p( Inter_Man_t * p, int fUsePudlak, int fUseOther { M114p_Solver_t pSat; Vec_Int_t * vMapRoots, * vMapVars; - int clk, status, RetValue; + clock_t clk; + int status, RetValue; assert( p->pInterNew == NULL ); // derive the SAT solver pSat = Inter_ManDeriveSatSolverM114p( p->pInter, p->pCnfInter, |