diff options
Diffstat (limited to 'src/proof/fra')
-rw-r--r-- | src/proof/fra/fraInd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/proof/fra/fraInd.c b/src/proof/fra/fraInd.c index 633f8979..0c7134aa 100644 --- a/src/proof/fra/fraInd.c +++ b/src/proof/fra/fraInd.c @@ -590,7 +590,8 @@ clk2 = clock(); // verify implications using simulation if ( p->pCla->vImps && Vec_IntSize(p->pCla->vImps) ) { - int Temp, clk = clock(); + int Temp; + clock_t clk = clock(); if ( Temp = Fra_ImpVerifyUsingSimulation( p ) ) printf( "Implications failing the simulation test = %d (out of %d). ", Temp, Vec_IntSize(p->pCla->vImps) ); else |