diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2012-07-13 17:58:56 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2012-07-13 17:58:56 -0700 |
commit | 7913c1d84f06e9f1881b3fe9a9e769862ae45b16 (patch) | |
tree | 6cbb66e71ead01bae6b102055edc98dbb5094e35 /src/sat/bsat | |
parent | c25f488a83b361535ad8cb04bb67cf1abbbc9e60 (diff) | |
download | abc-7913c1d84f06e9f1881b3fe9a9e769862ae45b16.tar.gz abc-7913c1d84f06e9f1881b3fe9a9e769862ae45b16.tar.bz2 abc-7913c1d84f06e9f1881b3fe9a9e769862ae45b16.zip |
Debugging a proof error.
Diffstat (limited to 'src/sat/bsat')
-rw-r--r-- | src/sat/bsat/satProof.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sat/bsat/satProof.c b/src/sat/bsat/satProof.c index 93232f08..5616fdda 100644 --- a/src/sat/bsat/satProof.c +++ b/src/sat/bsat/satProof.c @@ -458,9 +458,7 @@ int Sat_ProofReduce( Vec_Set_t * vProof, void * pRoots, int hProofPivot ) } Vec_SetWriteEntryNum( vProof, Vec_PtrSize(vUsed) ); Vec_PtrFree( vUsed ); - - Sat_ProofCheck0( vProof ); - + // report the result if ( fVerbose ) { @@ -474,6 +472,8 @@ int Sat_ProofReduce( Vec_Set_t * vProof, void * pRoots, int hProofPivot ) Vec_SetShrink( vProof, Vec_SetHandCurrentS(vProof) ); Vec_SetShrinkLimits( vProof ); // Sat_ProofReduceCheck( s ); + + Sat_ProofCheck0( vProof ); return RetValue; } |