summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2014-09-20 14:10:05 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2014-09-20 14:10:05 -0700
commit00b8cda3d379d4af9cf126b302f502d8fbb3c9ca (patch)
treee10f53e94d5082a52be967a1487b8420a94f8b90 /src
parent1fb65889a32d18b4b5ae6a36b13aea557960928a (diff)
downloadabc-00b8cda3d379d4af9cf126b302f502d8fbb3c9ca.tar.gz
abc-00b8cda3d379d4af9cf126b302f502d8fbb3c9ca.tar.bz2
abc-00b8cda3d379d4af9cf126b302f502d8fbb3c9ca.zip
Synchronizing packages.
Diffstat (limited to 'src')
-rw-r--r--src/map/if/ifDsd.c2
-rw-r--r--src/opt/dau/dauGia.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/map/if/ifDsd.c b/src/map/if/ifDsd.c
index 48100a1e..5c2f9332 100644
--- a/src/map/if/ifDsd.c
+++ b/src/map/if/ifDsd.c
@@ -718,6 +718,8 @@ void If_DsdManPrint( If_DsdMan_t * p, char * pFileName, int Number, int Support,
MemSizeDecs += (int)Vec_VecMemoryInt((Vec_Vec_t *)(p->vTtDecs[v]));
}
If_DsdManPrintDistrib( p );
+ printf( "Number of inputs = %d. LUT size = %d. Marks = %s. Bookmark = %d.\n",
+ p->nVars, p->LutSize, If_DsdManHasMarks(p)? "yes" : "no", p->fNewAsUseless );
if ( p->pTtGia )
fprintf( pFile, "Non-DSD AIG nodes = %8d\n", Gia_ManAndNum(p->pTtGia) );
fprintf( pFile, "Unique table misses = %8d\n", p->nUniqueMisses );
diff --git a/src/opt/dau/dauGia.c b/src/opt/dau/dauGia.c
index 1d821a30..cc8ca23e 100644
--- a/src/opt/dau/dauGia.c
+++ b/src/opt/dau/dauGia.c
@@ -30,7 +30,7 @@ ABC_NAMESPACE_IMPL_START
extern int Kit_TruthToGia( Gia_Man_t * pMan, unsigned * pTruth, int nVars, Vec_Int_t * vMemory, Vec_Int_t * vLeaves, int fHash );
-#define DAU_DSD_MAX_VAR 8
+#define DAU_DSD_MAX_VAR 12
static int m_Calls = 0;
static int m_NonDsd = 0;