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

Add clause simplification stub

This commit is contained in:
Jakob Rath 2022-08-22 12:36:05 +02:00
parent 3e99828c3c
commit bf1a7914cd
3 changed files with 53 additions and 1 deletions

View file

@ -0,0 +1,27 @@
/*++
Copyright (c) 2022 Microsoft Corporation
Module Name:
Clause Simplification
Author:
Jakob Rath, Nikolaj Bjorner (nbjorner) 2022-08-22
--*/
#pragma once
#include "math/polysat/constraint.h"
namespace polysat {
class solver;
class simplify_clause {
solver& s;
public:
simplify_clause(solver& s);
};
}