3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-12 06:00:53 +00:00

init m_e_matrix on terms instead of the tableau

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2024-10-21 14:11:07 -07:00 committed by Lev Nachmanson
parent 392c24a145
commit 5f5f1d4fd1
4 changed files with 36 additions and 25 deletions

View file

@ -237,6 +237,7 @@ public:
public:
ival(lpvar var, const mpq & val) : m_var(var), m_coeff(val) { }
lpvar j() const { return m_var; }
lpvar var() const { return m_var; }
const mpq & coeff() const { return m_coeff; }
};