This commit is contained in:
chriseth
2022-03-20 22:34:37 +01:00
parent 22aba74176
commit a3f999a13e
4 changed files with 20 additions and 4 deletions
+8
View File
@@ -344,6 +344,14 @@ BOOST_AUTO_TEST_CASE(pure_boolean)
infeasible();
}
BOOST_AUTO_TEST_CASE(more_test)
{
Expression x = variable("x");
solver.addAssertion(x == 0);
solver.addAssertion(x != 0);
infeasible();
}
BOOST_AUTO_TEST_SUITE_END()
}