3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 19:35:50 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-05-09 18:49:00 -07:00
parent f044071f5e
commit 4890c3ce31
7 changed files with 61 additions and 33 deletions

View file

@ -82,9 +82,10 @@ class core;
// correctness of the lemma can be checked at this point.
//
class new_lemma {
char const* name;
core& c;
public:
new_lemma(core& c);
new_lemma(core& c, char const* name);
~new_lemma();
lemma& operator()();
std::ostream& display(std::ostream& out) const;