summaryrefslogtreecommitdiffstats
path: root/src/bdd/cudd/cuddAnneal.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bdd/cudd/cuddAnneal.c')
-rw-r--r--src/bdd/cudd/cuddAnneal.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bdd/cudd/cuddAnneal.c b/src/bdd/cudd/cuddAnneal.c
index 3d8b56b9..32155603 100644
--- a/src/bdd/cudd/cuddAnneal.c
+++ b/src/bdd/cudd/cuddAnneal.c
@@ -153,7 +153,7 @@ cuddAnnealing(
/* Keep track of the best order. */
BestCost = size;
- BestOrder = ALLOC(int,nvars);
+ BestOrder = ABC_ALLOC(int,nvars);
if (BestOrder == NULL) {
table->errorCode = CUDD_MEMORY_OUT;
return(0);
@@ -218,7 +218,7 @@ cuddAnnealing(
}
if (!result) {
- FREE(BestOrder);
+ ABC_FREE(BestOrder);
return(0);
}
@@ -245,7 +245,7 @@ cuddAnnealing(
}
result = restoreOrder(table,BestOrder,lower,upper);
- FREE(BestOrder);
+ ABC_FREE(BestOrder);
if (!result) return(0);
#ifdef DD_STATS
fprintf(table->out,"#:N_EXCHANGE %8d : total exchanges\n",ecount);