MCPcopy Create free account
hub / github.com/NeuralNetworkVerification/Marabou / buildQueryFromCurrentState

Method buildQueryFromCurrentState

src/engine/Engine.cpp:3304–3313  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3302}
3303
3304InputQuery 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
3315void Engine::updateGroundUpperBound( const unsigned var, const double value )
3316{

Callers 1

preprocessFunction · 0.80

Calls 5

getNumberOfVariablesMethod · 0.45
setLowerBoundMethod · 0.45
getLowerBoundMethod · 0.45
setUpperBoundMethod · 0.45
getUpperBoundMethod · 0.45

Tested by

no test coverage detected