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

First version of refine_disequal_lin

This commit is contained in:
Jakob Rath 2021-12-23 18:36:27 +01:00
parent eb9bfbb3d8
commit 28864e563c
5 changed files with 103 additions and 8 deletions

View file

@ -45,6 +45,11 @@ namespace polysat {
rational const & a2, pdd const& b2, pdd const& e2,
fi_record& fi);
bool match_linear4(signed_constraint const& c,
rational const & a1, pdd const& b1, pdd const& e1,
rational const & a2, pdd const& b2, pdd const& e2,
fi_record& fi);
void add_non_unit_side_conds(fi_record& fi, pdd const& b1, pdd const& e1, pdd const& b2, pdd const& e2);
public: