mirror of
https://github.com/Z3Prover/z3
synced 2025-08-21 10:41:35 +00:00
fixes
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
16555d4886
commit
2746528aab
19 changed files with 186 additions and 106 deletions
|
@ -488,6 +488,11 @@ void goal::display_dimacs(std::ostream & out) const {
|
|||
}
|
||||
out << "0\n";
|
||||
}
|
||||
for (auto const& kv : expr2var) {
|
||||
expr* key = kv.m_key;
|
||||
if (is_app(key))
|
||||
out << "c " << kv.m_value << " " << to_app(key)->get_decl()->get_name() << "\n";
|
||||
}
|
||||
}
|
||||
|
||||
unsigned goal::num_exprs() const {
|
||||
|
|
|
@ -214,7 +214,7 @@ class parallel_tactic : public tactic {
|
|||
|
||||
void set_type(task_type t) { m_type = t; }
|
||||
|
||||
expr_ref_vector const& cubes() const { SASSERT(m_type == conquer); return m_cubes; }
|
||||
expr_ref_vector const& cubes() const { SASSERT(m_type == conquer_task); return m_cubes; }
|
||||
|
||||
// remove up to n cubes from list of cubes.
|
||||
expr_ref_vector split_cubes(unsigned n) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue