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

Implement compare

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2013-01-05 20:21:49 -08:00
parent 3ffda25350
commit ae1da72cb7
2 changed files with 31 additions and 6 deletions

View file

@ -50,6 +50,8 @@ static void tst1() {
t = (a - eps*2) / (eps + 1);
std::cout << t << std::endl;
std::cout << t * (eps + 1) << std::endl;
a = 10;
std::cout << (a + eps > a) << std::endl;
}
void tst_rcf() {