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

move the indices housekeeping from theory_lra to lar_solver

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-02-17 18:02:21 -08:00
parent 76e1aeb2bb
commit 1abb109faf

View file

@ -215,9 +215,6 @@ class theory_lra::imp {
typedef vector<std::pair<rational, lpvar>> var_coeffs;
// svector<lpvar> m_theory_var2var_index; // translate from theory variables to lar vars
// svector<theory_var> m_var_index2theory_var; // reverse map from lp_solver variables to theory variables
// svector<theory_var> m_term_index2theory_var; // reverse map from lp_solver variables to theory variables
var_coeffs m_left_side; // constraint left side
mutable std::unordered_map<lpvar, rational> m_variable_values; // current model
lpvar m_one_var;