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

notes for later

This commit is contained in:
Jakob Rath 2021-09-14 11:01:35 +02:00
parent d935714874
commit 640acd2ebc

View file

@ -10,6 +10,19 @@ Author:
Nikolaj Bjorner (nbjorner) 2021-03-19
Jakob Rath 2021-04-6
Notes:
TODO: Maybe we want to rewrite some of the following into equalities? (i.e., into p<=0)
p <= 0 <==> p = 0
-1 <= p <==> p = -1
1 <= p <==> p != 0
p <= -2 <==> p != -1
e.g.
x - 2 >= 1 <==> x != 2
2 - x >= -1 <==> x = 3
--*/
#include "math/polysat/constraint.h"