Commit 4116e13b by Alan Mishchenko

Experiments with MUX decomposition.

parent 96b9192c
...@@ -5103,7 +5103,7 @@ SOURCE=.\src\aig\gia\giaResub2.c ...@@ -5103,7 +5103,7 @@ SOURCE=.\src\aig\gia\giaResub2.c
# End Source File # End Source File
# Begin Source File # Begin Source File
SOURCE=.\src\aig\gia\giaResub3_new.c SOURCE=.\src\aig\gia\giaResub3.c
# End Source File # End Source File
# Begin Source File # Begin Source File
......
...@@ -211,7 +211,6 @@ Gia_Man_t * Gia_ManPerformMuxDec( Gia_Man_t * p ) ...@@ -211,7 +211,6 @@ Gia_Man_t * Gia_ManPerformMuxDec( Gia_Man_t * p )
Gia_ManHashAlloc( pNew ); Gia_ManHashAlloc( pNew );
for ( o = 0; o < Gia_ManCoNum(p); o++ ) for ( o = 0; o < Gia_ManCoNum(p); o++ )
{ {
Abc_TtReverseVars( pRes+o*nWords, nWords );
Vec_IntClear( vDatas ); Vec_IntClear( vDatas );
for ( i = 0; i < nWords; i++ ) for ( i = 0; i < nWords; i++ )
Vec_IntPush( vDatas, Kit_TruthToGia(pNew, (unsigned *)(pRes+o*nWords+i), 6, vMemory, vLeaves, 1) ); Vec_IntPush( vDatas, Kit_TruthToGia(pNew, (unsigned *)(pRes+o*nWords+i), 6, vMemory, vLeaves, 1) );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment