mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
local
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
906d52ca1c
commit
79fefe5fb3
3 changed files with 29 additions and 17 deletions
|
@ -58,4 +58,10 @@ bool solver::influences_nl_var(lpvar j) const {
|
|||
solver::~solver() {
|
||||
dealloc(m_core);
|
||||
}
|
||||
|
||||
std::ostream& solver::display(std::ostream& out) const {
|
||||
m_core->print_monics(out);
|
||||
return out;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -38,12 +38,13 @@ public:
|
|||
|
||||
solver(lp::lar_solver& s);
|
||||
~solver();
|
||||
inline core * get_core() { return m_core; }
|
||||
core& get_core() { return *m_core; }
|
||||
void push();
|
||||
void pop(unsigned scopes);
|
||||
bool need_check();
|
||||
lbool check(vector<lemma>&);
|
||||
bool is_monic_var(lpvar) const;
|
||||
bool influences_nl_var(lpvar) const;
|
||||
std::ostream& display(std::ostream& out) const;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue