summaryrefslogtreecommitdiffstats
path: root/src/aig/gia/giaTruth.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2015-08-11 08:04:25 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2015-08-11 08:04:25 -0700
commit6ae4ddec0001b7bc7a66798c8887f1d761c2e59d (patch)
tree3bc1223fec128a426f4db4a25fcf8fa0e6d791c8 /src/aig/gia/giaTruth.c
parent033203b7bd2a55a60cb9321824e3c556f5ec999b (diff)
downloadabc-6ae4ddec0001b7bc7a66798c8887f1d761c2e59d.tar.gz
abc-6ae4ddec0001b7bc7a66798c8887f1d761c2e59d.tar.bz2
abc-6ae4ddec0001b7bc7a66798c8887f1d761c2e59d.zip
New command 'isonpn'.
Diffstat (limited to 'src/aig/gia/giaTruth.c')
-rw-r--r--src/aig/gia/giaTruth.c61
1 files changed, 61 insertions, 0 deletions
diff --git a/src/aig/gia/giaTruth.c b/src/aig/gia/giaTruth.c
index c596048a..3c8e7626 100644
--- a/src/aig/gia/giaTruth.c
+++ b/src/aig/gia/giaTruth.c
@@ -19,6 +19,9 @@
***********************************************************************/
#include "gia.h"
+#include "misc/vec/vecMem.h"
+#include "misc/util/utilTruth.h"
+#include "opt/dau/dau.h"
ABC_NAMESPACE_IMPL_START
@@ -402,6 +405,64 @@ word * Gia_ObjComputeTruthTableCut( Gia_Man_t * p, Gia_Obj_t * pRoot, Vec_Int_t
return pTruth;
}
+/**Function*************************************************************
+
+ Synopsis [Reduces GIA to contain isomorphic POs.]
+
+ Description [The root cannot be one of the leaves.]
+
+ SideEffects []
+
+ SeeAlso []
+
+***********************************************************************/
+Gia_Man_t * Gia_ManIsoNpnReduce( Gia_Man_t * p, int fVerbose )
+{
+ char pCanonPerm[16];
+ int i, iObj, uCanonPhase, nVars, lastId, truthId;
+ word * pTruth;
+ Gia_Obj_t * pObj;
+ Vec_Mem_t * vTtMem[17]; // truth table memory and hash table
+ Gia_Man_t * pNew = NULL;
+ Vec_Int_t * vLeaves = Vec_IntAlloc( 16 );
+ Vec_Int_t * vCone = Vec_IntAlloc( Gia_ManCoNum(p) );
+ for ( i = 0; i < 17; i++ )
+ {
+ vTtMem[i] = Vec_MemAlloc( Abc_TtWordNum(i), 10 );
+ Vec_MemHashAlloc( vTtMem[i], 1000 );
+ }
+ Gia_ObjComputeTruthTableStart( p, 16 );
+ Gia_ManForEachPo( p, pObj, i )
+ {
+ iObj = Gia_ObjId(p, pObj);
+ Gia_ManCollectCis( p, &iObj, 1, vLeaves );
+ if ( Vec_IntSize(vLeaves) > 16 )
+ {
+ Vec_IntPush( vCone, i );
+ continue;
+ }
+ if ( !Gia_ObjIsAnd(Gia_ObjFanin0(pObj)) )
+ continue;
+ pTruth = Gia_ObjComputeTruthTableCut( p, Gia_ObjFanin0(pObj), vLeaves );
+ Abc_TtMinimumBase( pTruth, NULL, Vec_IntSize(vLeaves), &nVars );
+ uCanonPhase = Abc_TtCanonicize( pTruth, nVars, pCanonPerm );
+ lastId = Vec_MemEntryNum( vTtMem[nVars] );
+ truthId = Vec_MemHashInsert( vTtMem[nVars], pTruth );
+ if ( lastId != Vec_MemEntryNum( vTtMem[nVars] ) ) // new one
+ Vec_IntPush( vCone, i );
+ }
+ Vec_IntFree( vLeaves );
+ for ( i = 0; i < 17; i++ )
+ {
+ Vec_MemHashFree( vTtMem[i] );
+ Vec_MemFree( vTtMem[i] );
+ }
+ Gia_ObjComputeTruthTableStop( p );
+ pNew = Gia_ManDupSelectedOutputs( p, vCone );
+ Vec_IntFree( vCone );
+ return pNew;
+}
+
////////////////////////////////////////////////////////////////////////
/// END OF FILE ///
////////////////////////////////////////////////////////////////////////