3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-30 04:15:51 +00:00

update polynomial superposition

This commit is contained in:
Jakob Rath 2021-09-08 14:00:10 +02:00
parent 2de443c74f
commit ba8fa1f072
5 changed files with 60 additions and 85 deletions

View file

@ -99,7 +99,7 @@ namespace polysat {
pdd lhs;
pdd rhs;
bool is_strict;
constraint const* src;
constraint const* src; // TODO: should be signed_constraint now
inequality(pdd const & lhs, pdd const & rhs, bool is_strict, constraint const* src):
lhs(lhs), rhs(rhs), is_strict(is_strict), src(src) {}
};