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 f59ff7c commit 7b6eff6Copy full SHA for 7b6eff6
src/test/smt_context.cpp
@@ -21,7 +21,9 @@ void tst_smt_context()
21
app_ref c1(m.mk_const(symbol("c"), m.mk_bool_sort()), m);
22
app_ref na1(m.mk_not(a1), m);
23
ctx.assert_expr(na1);
24
- ctx.assert_expr(m.mk_or(c1.get(), b1.get()));
+
25
+ app_ref b_or_c(m.mk_or(c1.get(), b1.get()), m);
26
+ ctx.assert_expr(b_or_c);
27
28
{
29
app_ref nc(m.mk_not(c1), m);
0 commit comments