| 2532 | } |
| 2533 | |
| 2534 | smtutil::Expression SMTEncoder::currentValue(VariableDeclaration const& _decl) const |
| 2535 | { |
| 2536 | solAssert(m_context.knownVariable(_decl), ""); |
| 2537 | return m_context.variable(_decl)->currentValue(); |
| 2538 | } |
| 2539 | |
| 2540 | smtutil::Expression SMTEncoder::valueAtIndex(VariableDeclaration const& _decl, unsigned _index) const |
| 2541 | { |
no test coverage detected