summaryrefslogtreecommitdiffstats
path: root/src/base/abci/abcAuto.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/base/abci/abcAuto.c')
-rw-r--r--src/base/abci/abcAuto.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/base/abci/abcAuto.c b/src/base/abci/abcAuto.c
index 3d723b1c..390442fe 100644
--- a/src/base/abci/abcAuto.c
+++ b/src/base/abci/abcAuto.c
@@ -128,14 +128,14 @@ void Abc_NtkAutoPrintAll( DdManager * dd, int nInputs, DdNode * pbOutputs[], int
int nAutoSymsMaxSupp;
int nAutoSymOuts;
int nSuppSizeMax;
- clock_t clk;
+ abctime clk;
nAutoSymOuts = 0;
nAutoSyms = 0;
nAutoSymsMax = 0;
nAutoSymsMaxSupp = 0;
nSuppSizeMax = 0;
- clk = clock();
+ clk = Abc_Clock();
SigCounter = 0;
for ( o = 0; o < nOutputs; o++ )
@@ -196,7 +196,7 @@ void Abc_NtkAutoPrintAll( DdManager * dd, int nInputs, DdNode * pbOutputs[], int
printf( "SumK=%3d ", nAutoSyms );
printf( "KMax=%2d ", nAutoSymsMax );
printf( "Supp=%3d ", nAutoSymsMaxSupp );
- printf( "Time=%4.2f ", (float)(clock() - clk)/(float)(CLOCKS_PER_SEC) );
+ printf( "Time=%4.2f ", (float)(Abc_Clock() - clk)/(float)(CLOCKS_PER_SEC) );
printf( "\n" );
}