| 119 | } |
| 120 | |
| 121 | void CHCSmtLib2Interface::declareVariable(std::string const& _name, SortPointer const& _sort) |
| 122 | { |
| 123 | smtAssert(_sort); |
| 124 | if (!m_context.isDeclared(_name)) |
| 125 | m_context.declare(_name, _sort); |
| 126 | } |
| 127 | |
| 128 | std::string CHCSmtLib2Interface::toSmtLibSort(SortPointer const& _sort) |
| 129 | { |
nothing calls this directly
no test coverage detected