File tree Expand file tree Collapse file tree 3 files changed +1
-6
lines changed
Expand file tree Collapse file tree 3 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,6 @@ const unsigned GlobalConfiguration::DNC_DEPTH_THRESHOLD = 5;
114114
115115const double GlobalConfiguration::MINIMAL_COEFFICIENT_FOR_TIGHTENING = 0.01 ;
116116const double GlobalConfiguration::LEMMA_CERTIFICATION_TOLERANCE = 0.00000001 ;
117- const double GlobalConfiguration::CONTRADICTION_THRESHOLD = 0.000002 ;
118117const bool GlobalConfiguration::WRITE_JSON_PROOF = false ;
119118const bool GlobalConfiguration::WRITE_ALETHE_PROOF = true ;
120119
Original file line number Diff line number Diff 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;
Original file line number Diff line number Diff 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
35053505double Engine::explainBound ( unsigned var, bool isUpper ) const
You can’t perform that action at this time.
0 commit comments