| 288 | } |
| 289 | |
| 290 | std::optional<SortPointer> SMTLib2Context::getTupleType(std::string const& _name) const |
| 291 | { |
| 292 | auto it = m_tupleSorts.find(_name); |
| 293 | return it == m_tupleSorts.end() ? std::nullopt : std::optional<SortPointer>(unresolve(it->second)); |
| 294 | } |
| 295 | |
| 296 | std::optional<std::pair<std::string, SortPointer>> SMTLib2Context::getTupleAccessor(std::string const& _name) const |
| 297 | { |
no test coverage detected