Commit cdabd42a by Alan Mishchenko

Fixing compilication problem related to shiftFunc().

parent b2925950
...@@ -369,7 +369,7 @@ int Abc_TtCountOnesInCofsSimple( word * pTruth, int nVars, int * pStore ) ...@@ -369,7 +369,7 @@ int Abc_TtCountOnesInCofsSimple( word * pTruth, int nVars, int * pStore )
} }
// Shifted Cofactor Coefficient // Shifted Cofactor Coefficient
inline int shiftFunc(int ci) static inline int shiftFunc(int ci)
//{ return ci * ci; } //{ return ci * ci; }
{ return 1 << ci; } { return 1 << ci; }
......
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