3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-31 08:23:17 +00:00

add binary_merge encoding option

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-02-28 08:35:22 -08:00
parent c4ee4ffae4
commit 4c76d43670
6 changed files with 283 additions and 4 deletions

View file

@ -383,8 +383,9 @@ namespace smt {
return m_imp->next_decision();
}
void kernel::display(std::ostream & out) const {
std::ostream& kernel::display(std::ostream & out) const {
m_imp->display(out);
return out;
}
void kernel::collect_statistics(::statistics & st) const {

View file

@ -237,7 +237,7 @@ namespace smt {
/**
\brief (For debubbing purposes) Prints the state of the kernel
*/
void display(std::ostream & out) const;
std::ostream& display(std::ostream & out) const;
/**
\brief Collect runtime statistics.