summaryrefslogtreecommitdiffstats
path: root/src/proof/int/intCtrex.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/proof/int/intCtrex.c')
-rw-r--r--src/proof/int/intCtrex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/proof/int/intCtrex.c b/src/proof/int/intCtrex.c
index 9b2946e9..91740e6c 100644
--- a/src/proof/int/intCtrex.c
+++ b/src/proof/int/intCtrex.c
@@ -100,7 +100,7 @@ void * Inter_ManGetCounterExample( Aig_Man_t * pAig, int nFrames, int fVerbose )
sat_solver * pSat;
Cnf_Dat_t * pCnf;
int status;
- clock_t clk = clock();
+ abctime clk = Abc_Clock();
Vec_Int_t * vCiIds;
// create timeframes
assert( Saig_ManPoNum(pAig) == 1 );
@@ -152,7 +152,7 @@ void * Inter_ManGetCounterExample( Aig_Man_t * pAig, int nFrames, int fVerbose )
// report the results
if ( fVerbose )
{
- ABC_PRT( "Total ctrex generation time", clock() - clk );
+ ABC_PRT( "Total ctrex generation time", Abc_Clock() - clk );
}
return pCtrex;