Bug fixes in CUDD 2.4.2.

This commit is contained in:
Alan Mishchenko 2011-12-06 07:39:55 -08:00
parent a24e678a79
commit b4a46eb688
1 changed files with 2 additions and 2 deletions

View File

@ -193,10 +193,10 @@ cuddTestInteract(
int x, int x,
int y) int y)
{ {
long posn, word, bit, result; int posn, word, bit, result;
if (x > y) { if (x > y) {
long tmp = x; int tmp = x;
x = y; x = y;
y = tmp; y = tmp;
} }