| 3313 | } |
| 3314 | |
| 3315 | void Engine::updateGroundUpperBound( const unsigned var, const double value ) |
| 3316 | { |
| 3317 | ASSERT( var < _tableau->getN() && _produceUNSATProofs ); |
| 3318 | if ( FloatUtils::lt( value, _groundBoundManager.getUpperBound( var ) ) ) |
| 3319 | _groundBoundManager.setUpperBound( var, value ); |
| 3320 | } |
| 3321 | |
| 3322 | void Engine::updateGroundLowerBound( const unsigned var, const double value ) |
| 3323 | { |
no test coverage detected