mirror of
https://github.com/Z3Prover/z3
synced 2025-07-19 10:52:02 +00:00
add stub for certificate #1926
This commit is contained in:
parent
2c8d942568
commit
d7ecaa2ebb
2 changed files with 5 additions and 1 deletions
|
@ -2366,6 +2366,10 @@ void context::updt_params() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void context::display_certificate(std::ostream& out) const {
|
||||||
|
proof_ref pr = get_proof();
|
||||||
|
out << pr;
|
||||||
|
}
|
||||||
|
|
||||||
void context::reset()
|
void context::reset()
|
||||||
{
|
{
|
||||||
|
|
|
@ -1092,7 +1092,7 @@ public:
|
||||||
void reset();
|
void reset();
|
||||||
|
|
||||||
std::ostream& display(std::ostream& out) const;
|
std::ostream& display(std::ostream& out) const;
|
||||||
void display_certificate(std::ostream& out) const {NOT_IMPLEMENTED_YET();}
|
void display_certificate(std::ostream& out) const;
|
||||||
|
|
||||||
pob& get_root() const {return m_pob_queue.get_root();}
|
pob& get_root() const {return m_pob_queue.get_root();}
|
||||||
void set_query(func_decl* q) {m_query_pred = q;}
|
void set_query(func_decl* q) {m_query_pred = q;}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue