mirror of
https://github.com/Z3Prover/z3
synced 2025-07-19 10:52:02 +00:00
rename aig_simplifier to cut_simplifier
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
8860de39bb
commit
dd3e77107e
12 changed files with 599 additions and 598 deletions
|
@ -24,7 +24,7 @@ Revision History:
|
|||
|
||||
namespace sat {
|
||||
|
||||
class aig_simplifier;
|
||||
class cut_simplifier;
|
||||
class extension;
|
||||
|
||||
class solver_core {
|
||||
|
@ -92,7 +92,7 @@ namespace sat {
|
|||
virtual extension* get_extension() const { return nullptr; }
|
||||
virtual void set_extension(extension* e) { if (e) throw default_exception("optional API not supported"); }
|
||||
|
||||
virtual aig_simplifier* get_aig_simplifier() { return nullptr; }
|
||||
virtual cut_simplifier* get_cut_simplifier() { return nullptr; }
|
||||
|
||||
|
||||
// The following methods are used when converting the state from the SAT solver back
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue