Skip to content

Commit 8ffba44

Browse files
committed
remove contradiction threshold
1 parent 8a90e74 commit 8ffba44

File tree

3 files changed

+1
-6
lines changed

3 files changed

+1
-6
lines changed

src/configuration/GlobalConfiguration.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ const unsigned GlobalConfiguration::DNC_DEPTH_THRESHOLD = 5;
114114

115115
const double GlobalConfiguration::MINIMAL_COEFFICIENT_FOR_TIGHTENING = 0.01;
116116
const double GlobalConfiguration::LEMMA_CERTIFICATION_TOLERANCE = 0.00000001;
117-
const double GlobalConfiguration::CONTRADICTION_THRESHOLD = 0.000002;
118117
const bool GlobalConfiguration::WRITE_JSON_PROOF = false;
119118
const bool GlobalConfiguration::WRITE_ALETHE_PROOF = true;
120119

src/configuration/GlobalConfiguration.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -251,10 +251,6 @@ class GlobalConfiguration
251251
*/
252252
static const double LEMMA_CERTIFICATION_TOLERANCE;
253253

254-
/* A (negative) threshold to determine if a contradction is not to be considered
255-
*/
256-
static const double CONTRADICTION_THRESHOLD;
257-
258254
/* Denote whether proofs should be written as a JSON file
259255
*/
260256
static const bool WRITE_JSON_PROOF;

src/engine/Engine.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3499,7 +3499,7 @@ bool Engine::certifyInfeasibility( unsigned var ) const
34993499
_groundBoundManager.getAllGroundBounds( Tightening::UB ).data(),
35003500
_groundBoundManager.getAllGroundBounds( Tightening::LB ).data(),
35013501
_tableau->getN() );
3502-
return FloatUtils::isNegative( derivedBound, GlobalConfiguration::CONTRADICTION_THRESHOLD );
3502+
return FloatUtils::isNegative( derivedBound );
35033503
}
35043504

35053505
double Engine::explainBound( unsigned var, bool isUpper ) const

0 commit comments

Comments
 (0)