| 44 | } |
| 45 | |
| 46 | void SMTLib2Context::declare(std::string const& _name, SortPointer const& _sort) |
| 47 | { |
| 48 | auto [_, inserted] = m_functions.insert({_name, _sort}); |
| 49 | smtAssert(inserted, "Trying to redeclare SMT function!"); |
| 50 | } |
| 51 | |
| 52 | SortPointer SMTLib2Context::getDeclaredSort(std::string const& _name) const |
| 53 | { |
no test coverage detected