mirror of
https://github.com/Z3Prover/z3
synced 2025-08-23 11:37:54 +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
|
@ -431,10 +431,10 @@ void goal::display_ll(std::ostream & out) const {
|
|||
/**
|
||||
\brief Assumes that the formula is already in CNF.
|
||||
*/
|
||||
void goal::display_dimacs(std::ostream & out) const {
|
||||
void goal::display_dimacs(std::ostream & out, bool include_names) const {
|
||||
expr_ref_vector fmls(m());
|
||||
get_formulas(fmls);
|
||||
::display_dimacs(out, fmls);
|
||||
::display_dimacs(out, fmls, include_names);
|
||||
}
|
||||
|
||||
unsigned goal::num_exprs() const {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue