Commit dc9d327a by Alan Mishchenko

Extending resource limit.

parent dc9a08bd
...@@ -1054,8 +1054,8 @@ static inline int Abc_TtCheckCondDep2( word * pTruth, int nVars, int nSuppLim ) ...@@ -1054,8 +1054,8 @@ static inline int Abc_TtCheckCondDep2( word * pTruth, int nVars, int nSuppLim )
} }
static inline int Abc_TtCheckCondDep( word * pTruth, int nVars, int nSuppLim ) static inline int Abc_TtCheckCondDep( word * pTruth, int nVars, int nSuppLim )
{ {
int nVarsMax = 12; int nVarsMax = 13;
word Cof0[64], Cof1[64]; // pow( 2, nVarsMax-6 ) word Cof0[128], Cof1[128]; // pow( 2, nVarsMax-6 )
int v, d, nWords = Abc_TtWordNum(nVars); int v, d, nWords = Abc_TtWordNum(nVars);
assert( nVars <= nVarsMax ); assert( nVars <= nVarsMax );
if ( nVars <= nSuppLim + 1 ) if ( nVars <= nSuppLim + 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