mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 17:45:32 +00:00
investigate #1946
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
fb1287155e
commit
6ef2557e2a
3 changed files with 50 additions and 61 deletions
|
@ -72,10 +72,8 @@ struct bit_blaster_model_converter : public model_converter {
|
|||
}
|
||||
TRACE("blaster_mc",
|
||||
tout << "bits that should not be included in the model:\n";
|
||||
obj_hashtable<func_decl>::iterator it = bits.begin();
|
||||
obj_hashtable<func_decl>::iterator end = bits.end();
|
||||
for (; it != end; ++it) {
|
||||
tout << (*it)->get_name() << " ";
|
||||
for (func_decl* f : bits) {
|
||||
tout << f->get_name() << " ";
|
||||
}
|
||||
tout << "\n";);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue