3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-25 20:46:01 +00:00

Implement unilinear subsumption as clause simplification

This commit is contained in:
Jakob Rath 2022-08-22 14:55:02 +02:00
parent c1e2ea80f5
commit 28ddd4ad56
3 changed files with 107 additions and 4 deletions

View file

@ -20,6 +20,8 @@ namespace polysat {
class simplify_clause {
solver& s;
bool try_unilinear_subsumption(clause& cl);
public:
simplify_clause(solver& s);