summaryrefslogtreecommitdiffstats
path: root/src/aig/aig
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2013-06-28 10:42:31 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2013-06-28 10:42:31 -0700
commit184c5d4ea467731005c92bc159c68d57c83c6c6a (patch)
treeec585fa6f993ed00851000069887812a4734d678 /src/aig/aig
parente93cfb18ee42e75e6d55c4fd02e5455c4ec16cc8 (diff)
downloadabc-184c5d4ea467731005c92bc159c68d57c83c6c6a.tar.gz
abc-184c5d4ea467731005c92bc159c68d57c83c6c6a.tar.bz2
abc-184c5d4ea467731005c92bc159c68d57c83c6c6a.zip
Adding timeout to the interpolant computation procedure.
Diffstat (limited to 'src/aig/aig')
-rw-r--r--src/aig/aig/aigInter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/aig/aig/aigInter.c b/src/aig/aig/aigInter.c
index 8f9318b3..f09a41f8 100644
--- a/src/aig/aig/aigInter.c
+++ b/src/aig/aig/aigInter.c
@@ -271,7 +271,7 @@ timeSat += Abc_Clock() - clk;
// create the resulting manager
clk = Abc_Clock();
pManInter = Inta_ManAlloc();
- pRes = (Aig_Man_t *)Inta_ManInterpolate( pManInter, (Sto_Man_t *)pSatCnf, vVarsAB, fVerbose );
+ pRes = (Aig_Man_t *)Inta_ManInterpolate( pManInter, (Sto_Man_t *)pSatCnf, 0, vVarsAB, fVerbose );
Inta_ManFree( pManInter );
timeInt += Abc_Clock() - clk;
/*