3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-09 04:31:24 +00:00

fix #2592 #2593 #2597 #2573 - duplicates, also fix #2603

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-10-01 13:14:04 -07:00
parent fe7a7fe23f
commit 88f0e4a64c
6 changed files with 160 additions and 39 deletions

View file

@ -38,7 +38,10 @@ namespace nlsat {
class solver {
struct imp;
struct ctx;
imp * m_imp;
ctx * m_ctx;
solver(ctx& c);
public:
solver(reslimit& rlim, params_ref const & p, bool incremental);
~solver();