| 134 | /// Expressions |
| 135 | |
| 136 | std::shared_ptr<SymbolicVariable> EncodingContext::expression(frontend::Expression const& _e) |
| 137 | { |
| 138 | if (!knownExpression(_e)) |
| 139 | createExpression(_e); |
| 140 | return m_expressions.at(&_e); |
| 141 | } |
| 142 | |
| 143 | bool EncodingContext::createExpression(frontend::Expression const& _e, std::shared_ptr<SymbolicVariable> _symbVar) |
| 144 | { |
no test coverage detected