Commit 4c62b002 by Alan Mishchenko

Towards better Boolean matching.

parent 12aab154
......@@ -52,7 +52,6 @@ int Dau_DecCheckSetTop5( word * p, int nVars, int nVarsF, int nVarsB, int nVarsS
int nMints = (1 << nVarsB);
int nMintsB = (1 <<(nVarsB-nVarsS));
int nMintsS = (1 << nVarsS);
int nMintsF = (1 << nVarsF);
int s, b, v, m, Mint, MintB, MintS;
assert( nVars == nVarsB + nVarsF );
assert( nVars <= 16 );
......@@ -122,7 +121,6 @@ int Dau_DecCheckSetTop6( word * p, int nVars, int nVarsF, int nVarsB, int nVarsS
int nMints = (1 << nVarsB);
int nMintsB = (1 <<(nVarsB-nVarsS));
int nMintsS = (1 << nVarsS);
int nMintsF = (1 << nVarsF);
int s, b, v, m, Mint, MintB, MintS;
assert( nVars == nVarsB + nVarsF );
assert( nVars <= 16 );
......
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