3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-03-24 12:45:16 -07:00
parent a4f668eef0
commit a557913307
2 changed files with 11 additions and 5 deletions

View file

@ -614,9 +614,10 @@ static void tst_sturm() {
am.display_interval(std::cout << "c:", c) << "\n";
am.display_root(std::cout << "c:", c) << "\n";
std::cout << "c < a " << am.lt(c, a) << " (expecting 0)\n";
std::cout << "b < a " << am.lt(b, a) << "\n";
std::cout << "c < b " << am.lt(c, b) << "\n";
std::cout << "c < a " << am.lt(c, a) << "\n";
// it should not be the case that b < a == 0, c < b == 0 and c < a == 1.
}