summaryrefslogtreecommitdiffstats
path: root/src/proof/int2
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2014-04-01 11:53:08 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2014-04-01 11:53:08 -0700
commit7b8863466eacfd6b63159600e62816f830acece6 (patch)
tree121788940097c38fa8b7530835c38be46f5e9a2a /src/proof/int2
parent41e94c474a26ac18cbe75572066411dd9ece81d0 (diff)
downloadabc-7b8863466eacfd6b63159600e62816f830acece6.tar.gz
abc-7b8863466eacfd6b63159600e62816f830acece6.tar.bz2
abc-7b8863466eacfd6b63159600e62816f830acece6.zip
Adding switch to handle only single faults.
Diffstat (limited to 'src/proof/int2')
-rw-r--r--src/proof/int2/int2Bmc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proof/int2/int2Bmc.c b/src/proof/int2/int2Bmc.c
index cd7f1a74..641bfb84 100644
--- a/src/proof/int2/int2Bmc.c
+++ b/src/proof/int2/int2Bmc.c
@@ -293,7 +293,7 @@ void Int2_ManCreateFrames( Int2_Man_t * p, int iFrame, Vec_Int_t * vPrefCos )
if ( Entry < Gia_ManObjNum(pFrames) )
{
assert( !Abc_LitIsCompl(iLit) );
- sat_solver_add_and( p->pGiaPref, Abc_Lit2Var(iLit), Abc_Lit2Var(iLit0), Abc_Lit2Var(iLit1), Abc_LitIsCompl(iLit0), Abc_LitIsCompl(iLit1) );
+ sat_solver_add_and( p->pGiaPref, Abc_Lit2Var(iLit), Abc_Lit2Var(iLit0), Abc_Lit2Var(iLit1), Abc_LitIsCompl(iLit0), Abc_LitIsCompl(iLit1), 0 );
}
}
else