summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2012-07-13 17:39:52 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2012-07-13 17:39:52 -0700
commit4051572726c7fa7e54ab9bf74dac8c0038465afe (patch)
tree55ec9be2dd5decc09b02673763707e2eee3b355f
parent0f82d82ba0360c0bd20f25cc77b38105d317e19e (diff)
downloadabc-4051572726c7fa7e54ab9bf74dac8c0038465afe.tar.gz
abc-4051572726c7fa7e54ab9bf74dac8c0038465afe.tar.bz2
abc-4051572726c7fa7e54ab9bf74dac8c0038465afe.zip
Debugging a proof error.
-rw-r--r--src/sat/bsat/satProof.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sat/bsat/satProof.c b/src/sat/bsat/satProof.c
index a71df116..53f60384 100644
--- a/src/sat/bsat/satProof.c
+++ b/src/sat/bsat/satProof.c
@@ -440,7 +440,7 @@ int Sat_ProofReduce( Vec_Set_t * vProof, void * pRoots, int hProofPivot )
// compact the nodes
Vec_PtrForEachEntry( satset *, vUsed, pNode, i )
{
- int X = sizeof(word)*Proof_NodeWordNum(pNode->nEnts);
+ int X = Proof_NodeWordNum(pNode->nEnts);
hTemp = pNode->Id; pNode->Id = 0;
assert( hTemp > 1 );
memmove( Vec_SetEntry(vProof, hTemp), pNode, sizeof(word)*Proof_NodeWordNum(pNode->nEnts) );