| 3302 | } |
| 3303 | |
| 3304 | InputQuery Engine::buildQueryFromCurrentState() const |
| 3305 | { |
| 3306 | InputQuery query = *_preprocessedQuery; |
| 3307 | for ( unsigned i = 0; i < query.getNumberOfVariables(); ++i ) |
| 3308 | { |
| 3309 | query.setLowerBound( i, _tableau->getLowerBound( i ) ); |
| 3310 | query.setUpperBound( i, _tableau->getUpperBound( i ) ); |
| 3311 | } |
| 3312 | return query; |
| 3313 | } |
| 3314 | |
| 3315 | void Engine::updateGroundUpperBound( const unsigned var, const double value ) |
| 3316 | { |
no test coverage detected