mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 20:05:51 +00:00
Add clause simplification stub
This commit is contained in:
parent
3e99828c3c
commit
bf1a7914cd
3 changed files with 53 additions and 1 deletions
24
src/math/polysat/simplify_clause.cpp
Normal file
24
src/math/polysat/simplify_clause.cpp
Normal file
|
@ -0,0 +1,24 @@
|
|||
/*++
|
||||
Copyright (c) 2022 Microsoft Corporation
|
||||
|
||||
Module Name:
|
||||
|
||||
Clause Simplification
|
||||
|
||||
Author:
|
||||
|
||||
Jakob Rath, Nikolaj Bjorner (nbjorner) 2022-08-22
|
||||
|
||||
Notes:
|
||||
|
||||
--*/
|
||||
#include "math/polysat/solver.h"
|
||||
#include "math/polysat/simplify_clause.h"
|
||||
|
||||
namespace polysat {
|
||||
|
||||
simplify_clause::simplify_clause(solver& s):
|
||||
s(s)
|
||||
{}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue