3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00

merge get_value and get_ivalue that produced different results

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-07-02 03:55:40 -07:00
parent 2ab0681381
commit 46ea054784
2 changed files with 17 additions and 34 deletions

View file

@ -115,7 +115,6 @@ void prove_example1() {
*/
void prove_example2() {
std::cout << "prove_example1\n";
context c;
expr x = c.int_const("x");
expr y = c.int_const("y");
@ -139,6 +138,7 @@ void prove_example2() {
s.reset();
s.add(!conjecture2);
std::cout << "conjecture 2:\n" << conjecture2 << "\n";
if (s.check() == unsat) {
std::cout << "proved" << "\n";
}