| 2538 | } |
| 2539 | |
| 2540 | smtutil::Expression SMTEncoder::valueAtIndex(VariableDeclaration const& _decl, unsigned _index) const |
| 2541 | { |
| 2542 | solAssert(m_context.knownVariable(_decl), ""); |
| 2543 | return m_context.variable(_decl)->valueAtIndex(_index); |
| 2544 | } |
| 2545 | |
| 2546 | bool SMTEncoder::createVariable(VariableDeclaration const& _varDecl) |
| 2547 | { |
no test coverage detected