3
0
Fork 0
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:
Nikolaj Bjorner 2021-12-12 14:52:09 -08:00
parent d80b375ac3
commit 30a2c32c3b
7 changed files with 96 additions and 20 deletions

View 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()();
};
}