3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 09:35:32 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2013-11-08 21:59:38 -08:00
parent 21058c38fd
commit b573b94f84
8 changed files with 20 additions and 24 deletions

View file

@ -130,6 +130,14 @@ public:
\brief Display the content of this solver.
*/
virtual void display(std::ostream & out) const;
class scoped_push {
solver& s;
public:
scoped_push(solver& s):s(s) { s.push(); }
~scoped_push() { s.pop(1); }
};
};
#endif