summaryrefslogtreecommitdiffstats
path: root/src/opt/csw/cswCore.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/opt/csw/cswCore.c')
-rw-r--r--src/opt/csw/cswCore.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/opt/csw/cswCore.c b/src/opt/csw/cswCore.c
index 3702b346..d1b871f9 100644
--- a/src/opt/csw/cswCore.c
+++ b/src/opt/csw/cswCore.c
@@ -48,8 +48,8 @@ Aig_Man_t * Csw_Sweep( Aig_Man_t * pAig, int nCutsMax, int nLeafMax, int fVerbos
Aig_Man_t * pRes;
Aig_Obj_t * pObj, * pObjNew, * pObjRes;
int i;
- clock_t clk;
-clk = clock();
+ abctime clk;
+clk = Abc_Clock();
// start the manager
p = Csw_ManStart( pAig, nCutsMax, nLeafMax, fVerbose );
// set elementary cuts at the PIs
@@ -83,7 +83,7 @@ clk = clock();
// remove dangling nodes
Aig_ManCleanup( p->pManRes );
// return the resulting manager
-p->timeTotal = clock() - clk;
+p->timeTotal = Abc_Clock() - clk;
p->timeOther = p->timeTotal - p->timeCuts - p->timeHash;
pRes = p->pManRes;
Csw_ManStop( p );