3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-23 22:33:40 +00:00

implement graph integrality

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2020-06-02 15:48:29 -07:00
parent 1e4e887221
commit 5d3070bc2d
2 changed files with 103 additions and 7 deletions

View file

@ -22,9 +22,8 @@
#include "util/map.h"
namespace lp {
// represents a linear expressieon
class lar_term {
// the term evaluates to sum of m_coeffs
typedef unsigned lpvar;
u_map<mpq> m_coeffs;
public: