3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-27 19:05:51 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-08-11 09:20:44 -07:00
parent 1197c4d416
commit 008f88ae1c
2 changed files with 23 additions and 10 deletions

View file

@ -1219,6 +1219,17 @@ namespace polysat {
* Explore an efficient way to propagate with the following idea:
* For odd c, multiply row by inverse of c and accumulate similar
* propagation.
*
* Conflicts spanning multiple rows are TBD:
* Idea could be similar to conflicts for inequality propagation.
* - create a stack of variables that get tightened.
* - walk over every row that contains the top variable on the stack
* - perform bounds propagation for the currently examined row
* - put newly tightened variables from row on the top of the stack
* - if a variable occurs already on the stack determine if the rows on the
* stack resolve into a conflict.
*
* TBD: Combination of inequality and row propagation?
*/
template<typename Ext>