mirror of
https://github.com/Z3Prover/z3
synced 2025-05-05 14:55:45 +00:00
add placeholder for simplification
This commit is contained in:
parent
d80b375ac3
commit
30a2c32c3b
7 changed files with 96 additions and 20 deletions
31
src/math/polysat/simplify.h
Normal file
31
src/math/polysat/simplify.h
Normal file
|
@ -0,0 +1,31 @@
|
|||
/*++
|
||||
Copyright (c) 2021 Microsoft Corporation
|
||||
|
||||
Module Name:
|
||||
|
||||
Simplification
|
||||
|
||||
Author:
|
||||
|
||||
Jakob Rath, Nikolaj Bjorner (nbjorner) 2021-12-12
|
||||
|
||||
--*/
|
||||
#pragma once
|
||||
#include "math/polysat/constraint.h"
|
||||
|
||||
namespace polysat {
|
||||
|
||||
class solver;
|
||||
|
||||
class simplify {
|
||||
solver& s;
|
||||
|
||||
public:
|
||||
simplify(solver& s);
|
||||
|
||||
bool should_apply() const;
|
||||
|
||||
void operator()();
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue