summaryrefslogtreecommitdiffstats
path: root/src/aig/gia/gia.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2020-05-03 21:09:02 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2020-05-03 21:09:02 -0700
commitf543d39ec89dc0513784e189b537e6d45fd3db31 (patch)
treea77c856bb52eb564cef1e4c767487e40d4466d8f /src/aig/gia/gia.c
parentf026e6533987a1628be38cfe828f167d4aaff760 (diff)
downloadabc-f543d39ec89dc0513784e189b537e6d45fd3db31.tar.gz
abc-f543d39ec89dc0513784e189b537e6d45fd3db31.tar.bz2
abc-f543d39ec89dc0513784e189b537e6d45fd3db31.zip
Experiment with permutations.
Diffstat (limited to 'src/aig/gia/gia.c')
-rw-r--r--src/aig/gia/gia.c95
1 files changed, 95 insertions, 0 deletions
diff --git a/src/aig/gia/gia.c b/src/aig/gia/gia.c
index 7947a60e..d57a4a74 100644
--- a/src/aig/gia/gia.c
+++ b/src/aig/gia/gia.c
@@ -297,6 +297,101 @@ void Gia_ManStructExperiment( Gia_Man_t * p )
Vec_PtrFree( vGias );
}
+/**Function*************************************************************
+
+ Synopsis []
+
+ Description []
+
+ SideEffects []
+
+ SeeAlso []
+
+***********************************************************************/
+int Gia_EnumFirstUnused( int * pUsed, int nVars )
+{
+ int i;
+ for ( i = 0; i < nVars; i++ )
+ if ( pUsed[i] == 0 )
+ return i;
+ return -1;
+}
+void Gia_EnumPerms_rec( int * pUsed, int nVars, int * pPerm, int nPerm, int * pCount, FILE * pFile, int nLogVars )
+{
+ int i, k, New;
+ if ( nPerm == nVars )
+ {
+ if ( pFile )
+ {
+ for ( i = 0; i < nLogVars; i++ )
+ fprintf( pFile, "%c", '0' + ((*pCount) >> (nLogVars-1-i) & 1) );
+ fprintf( pFile, " " );
+ for ( i = 0; i < nVars; i++ )
+ for ( k = 0; k < nVars; k++ )
+ fprintf( pFile, "%c", '0' + (pPerm[i] == k) );
+ fprintf( pFile, "\n" );
+ }
+ else
+ {
+ if ( *pCount < 20 )
+ {
+ printf( "%5d : ", (*pCount) );
+ for ( i = 0; i < nVars; i += 2 )
+ printf( "%d %d ", pPerm[i], pPerm[i+1] );
+ printf( "\n" );
+ }
+ }
+ (*pCount)++;
+ return;
+ }
+ New = Gia_EnumFirstUnused( pUsed, nVars );
+ assert( New >= 0 );
+ pPerm[nPerm] = New;
+ assert( pUsed[New] == 0 );
+ pUsed[New] = 1;
+ // try remaining ones
+ for ( i = 0; i < nVars; i++ )
+ {
+ if ( pUsed[i] == 1 )
+ continue;
+ pPerm[nPerm+1] = i;
+ assert( pUsed[i] == 0 );
+ pUsed[i] = 1;
+ Gia_EnumPerms_rec( pUsed, nVars, pPerm, nPerm+2, pCount, pFile, nLogVars );
+ assert( pUsed[i] == 1 );
+ pUsed[i] = 0;
+ }
+ assert( pUsed[New] == 1 );
+ pUsed[New] = 0;
+}
+void Gia_EnumPerms( int nVars )
+{
+ int nLogVars = 0, Count = 0;
+ int * pUsed = ABC_CALLOC( int, nVars );
+ int * pPerm = ABC_CALLOC( int, nVars );
+ FILE * pFile = fopen( "pairset.pla", "wb" );
+ assert( nVars % 2 == 0 );
+
+ printf( "Printing sets of pairs for %d objects:\n", nVars );
+ Gia_EnumPerms_rec( pUsed, nVars, pPerm, 0, &Count, NULL, -1 );
+ if ( Count > 20 )
+ printf( "...\n" );
+ printf( "Finished enumerating %d sets of pairs.\n", Count );
+
+ nLogVars = Abc_Base2Log( Count );
+ printf( "Need %d variables to encode %d sets.\n", nLogVars, Count );
+ Count = 0;
+ fprintf( pFile, ".i %d\n", 10 );
+ fprintf( pFile, ".o %d\n", nVars*nVars );
+ Gia_EnumPerms_rec( pUsed, nVars, pPerm, 0, &Count, pFile, nLogVars );
+ fprintf( pFile, ".e\n" );
+ fclose( pFile );
+ printf( "Finished dumping file \"%s\".\n", "pairset.pla" );
+
+ ABC_FREE( pUsed );
+ ABC_FREE( pPerm );
+}
+
////////////////////////////////////////////////////////////////////////
/// END OF FILE ///
////////////////////////////////////////////////////////////////////////