Commit 7ba37f49 by Alan Mishchenko

Improved DSD.

parent 7e9f0df3
...@@ -837,6 +837,10 @@ void Abc_Init( Abc_Frame_t * pAbc ) ...@@ -837,6 +837,10 @@ void Abc_Init( Abc_Frame_t * pAbc )
extern void Dar_LibStart(); extern void Dar_LibStart();
Dar_LibStart(); Dar_LibStart();
} }
{
extern void Dau_DsdTest();
Dau_DsdTest();
}
} }
/**Function************************************************************* /**Function*************************************************************
......
...@@ -530,7 +530,8 @@ static inline int Abc_TtSuppFindFirst( int Supp ) ...@@ -530,7 +530,8 @@ static inline int Abc_TtSuppFindFirst( int Supp )
} }
static inline int Abc_TtSuppOnlyOne( int Supp ) static inline int Abc_TtSuppOnlyOne( int Supp )
{ {
assert( Supp > 0 ); if ( Supp == 0 )
return 0;
return (Supp & (Supp-1)) == 0; return (Supp & (Supp-1)) == 0;
} }
static inline int Abc_TtSuppIsMinBase( int Supp ) static inline int Abc_TtSuppIsMinBase( int Supp )
......
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