Commit 03bb1e49 by Alan Mishchenko

Experiments with LUT mapping for small functions.

parent 4cf906d2
...@@ -1804,7 +1804,7 @@ static inline word Abc_Tt6Permute_rec( word t, int * pPerm, int nVars ) ...@@ -1804,7 +1804,7 @@ static inline word Abc_Tt6Permute_rec( word t, int * pPerm, int nVars )
} }
static inline void Abc_TtPermute( word * p, int * pPerm, int nVars ) static inline void Abc_TtPermute( word * p, int * pPerm, int nVars )
{ {
int v, nWords = Abc_TtWordNum(nVars), Perm[16]; int v, Perm[16];
assert( nVars <= 16 ); assert( nVars <= 16 );
for ( v = 0; v < nVars; v++ ) for ( v = 0; v < nVars; v++ )
Perm[v] = pPerm[v]; Perm[v] = pPerm[v];
......
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