mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 17:45:32 +00:00
fixes to cuts
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
7d8b56027f
commit
dcd4fff284
18 changed files with 75 additions and 50 deletions
|
@ -58,10 +58,10 @@ std::ostream& solver::display(std::ostream & out, unsigned n, expr* const* assum
|
|||
return out;
|
||||
}
|
||||
|
||||
std::ostream& solver::display_dimacs(std::ostream& out) const {
|
||||
std::ostream& solver::display_dimacs(std::ostream& out, bool include_names) const {
|
||||
expr_ref_vector fmls(get_manager());
|
||||
get_assertions(fmls);
|
||||
return ::display_dimacs(out, fmls);
|
||||
return ::display_dimacs(out, fmls, include_names);
|
||||
}
|
||||
|
||||
void solver::get_assertions(expr_ref_vector& fmls) const {
|
||||
|
|
|
@ -234,7 +234,7 @@ public:
|
|||
/**
|
||||
\brief Display the content of this solver in DIMACS format
|
||||
*/
|
||||
std::ostream& display_dimacs(std::ostream & out) const;
|
||||
std::ostream& display_dimacs(std::ostream & out, bool include_names = true) const;
|
||||
|
||||
/**
|
||||
\brief expose model converter when solver produces partially reduced set of assertions.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue