We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91da8ba commit 7a0da55Copy full SHA for 7a0da55
unit/solvers/smt2_incremental/smt2_incremental_decision_procedure.cpp
@@ -14,6 +14,12 @@
14
#include <util/namespace.h>
15
#include <util/symbol_table.h>
16
17
+// Used by catch framework for printing in the case of test failures. This
18
+// means that we get error messages showing the smt formula expressed as SMT2
19
+// strings instead of `{?}` being printed. It works because catch uses the
20
+// appropriate overload of `operator<<` where it exists.
21
+#include <solvers/smt2_incremental/smt_to_smt2_string.h>
22
+
23
class smt_mock_solver_processt : public smt_base_solver_processt
24
{
25
public:
0 commit comments