[buddy] fix ARM compilation
* src/bddop.c, src/bddx.h, examples/bddtest/bddtest.cxx: Use signed char* instead of char*.
This commit is contained in:
parent
2f2351a50f
commit
a7e4cb4182
3 changed files with 6 additions and 6 deletions
|
|
@ -8,7 +8,7 @@ static const int varnum = 5;
|
|||
Example of allsat print handler.
|
||||
**************************************************************************/
|
||||
|
||||
void allsatHandlerPrint(char* varset, int size)
|
||||
void allsatHandlerPrint(signed char* varset, int size)
|
||||
{
|
||||
using namespace std ;
|
||||
for (int v=0; v<size ; ++v)
|
||||
|
|
@ -26,7 +26,7 @@ void allsatHandlerPrint(char* varset, int size)
|
|||
static bdd allsatBDD;
|
||||
static bdd allsatSumBDD;
|
||||
|
||||
void allsatHandler(char* varset, int size)
|
||||
void allsatHandler(signed char* varset, int size)
|
||||
{
|
||||
bdd x = bddtrue;
|
||||
for (int v=0 ; v<size ; ++v)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue