summaryrefslogtreecommitdiffstats
path: root/src/bdd/cudd/cuddMatMult.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2021-11-27 17:37:34 -0800
committerAlan Mishchenko <alanmi@berkeley.edu>2021-11-27 17:37:34 -0800
commitf26ea1eaea5b51a3aec8107636c9f88eadfdcee0 (patch)
tree59f90e5e857950020c4108c31dbfbc6e768b5f91 /src/bdd/cudd/cuddMatMult.c
parent96bdcd2bb274e2cf01d2362294d5f5fdeb009533 (diff)
downloadabc-f26ea1eaea5b51a3aec8107636c9f88eadfdcee0.tar.gz
abc-f26ea1eaea5b51a3aec8107636c9f88eadfdcee0.tar.bz2
abc-f26ea1eaea5b51a3aec8107636c9f88eadfdcee0.zip
Changes to make compiler happy.
Diffstat (limited to 'src/bdd/cudd/cuddMatMult.c')
-rw-r--r--src/bdd/cudd/cuddMatMult.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/bdd/cudd/cuddMatMult.c b/src/bdd/cudd/cuddMatMult.c
index e8cae2ce..3dafa226 100644
--- a/src/bdd/cudd/cuddMatMult.c
+++ b/src/bdd/cudd/cuddMatMult.c
@@ -319,6 +319,23 @@ Cudd_addOuterSum(
/* Definition of static functions */
/*---------------------------------------------------------------------------*/
+
+#ifdef USE_CASH_DUMMY
+/**Function********************************************************************
+
+ Synopsis We need to declare a function passed to cuddCacheLookup2 that can
+ be casted to DD_CTFP.
+
+******************************************************************************/
+static DdNode *
+addMMRecur_dummy(DdManager * dd, DdNode * A, DdNode * B)
+{
+ assert(0);
+ return 0;
+}
+#endif
+
+
/**Function********************************************************************
Synopsis [Performs the recursive step of Cudd_addMatrixMultiply.]
@@ -393,7 +410,11 @@ addMMRecur(
topA = cuddI(dd,A->index); topB = cuddI(dd,B->index);
topV = ddMin(topA,topB);
+#ifdef USE_CASH_DUMMY
+ cacheOp = (DD_CTFP) addMMRecur_dummy;
+#else
cacheOp = (DD_CTFP) addMMRecur;
+#endif
res = cuddCacheLookup2(dd,cacheOp,A,B);
if (res != NULL) {
/* If the result is 0, there is no need to normalize.