3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 19:35:50 +00:00

port Grobner, add fixed var dependencies to create_sum_from_row()

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-10-17 17:52:51 -07:00
parent b3fc12ffdc
commit 7fbf3e0707
11 changed files with 87 additions and 44 deletions

View file

@ -30,9 +30,9 @@ class core;
class horner : common {
intervals m_intervals;
nex_sum m_row_sum;
ci_dependency* m_fixed_var_deps;
intervals m_intervals;
nex_sum m_row_sum;
svector<lp::constraint_index> m_fixed_var_constraints_for_row;
public:
typedef intervals::interval interv;
horner(core *core);