summaryrefslogtreecommitdiffstats
path: root/src/aig/fra/fraInd.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2007-09-11 08:01:00 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2007-09-11 08:01:00 -0700
commitd62ee0a90d14fe762015906b6b3a5ad23421d390 (patch)
tree0bf1f4bf286559c3cca61661d29d7ea312548778 /src/aig/fra/fraInd.c
parente8cf8415c5c8c31db650f549e54fd7a3aad48be0 (diff)
downloadabc-d62ee0a90d14fe762015906b6b3a5ad23421d390.tar.gz
abc-d62ee0a90d14fe762015906b6b3a5ad23421d390.tar.bz2
abc-d62ee0a90d14fe762015906b6b3a5ad23421d390.zip
Version abc70911
Diffstat (limited to 'src/aig/fra/fraInd.c')
-rw-r--r--src/aig/fra/fraInd.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/aig/fra/fraInd.c b/src/aig/fra/fraInd.c
index 14fba9ba..98025280 100644
--- a/src/aig/fra/fraInd.c
+++ b/src/aig/fra/fraInd.c
@@ -257,7 +257,7 @@ Aig_Man_t * Fra_FraigInduction( Aig_Man_t * pManAig, int nFramesP, int nFramesK,
Aig_Obj_t * pObj;
Cnf_Dat_t * pCnf;
Aig_Man_t * pManAigNew;
- int nNodesBeg, nRegsBeg, Temp;
+ int nNodesBeg, nRegsBeg;
int nIter, i, clk = clock(), clk2;
if ( Aig_ManNodeNum(pManAig) == 0 )
@@ -424,17 +424,18 @@ PRT( "Time", clock() - clk );
break;
}
}
+/*
// check implications using simulation
if ( p->pCla->vImps && Vec_IntSize(p->pCla->vImps) )
{
- int clk = clock();
+ int Temp, clk = clock();
if ( Temp = Fra_ImpVerifyUsingSimulation( p ) )
printf( "Implications failing the simulation test = %d (out of %d). ", Temp, Vec_IntSize(p->pCla->vImps) );
else
printf( "All %d implications have passed the simulation test. ", Vec_IntSize(p->pCla->vImps) );
PRT( "Time", clock() - clk );
}
-
+*/
// move the classes into representatives and reduce AIG
clk2 = clock();