mirror of
https://github.com/Z3Prover/z3
synced 2025-06-16 02:46:16 +00:00
tabs and indentation
This commit is contained in:
parent
d2c9b69eb3
commit
f3441c6a9b
7 changed files with 86 additions and 88 deletions
|
@ -152,17 +152,15 @@ struct mus::imp {
|
|||
}
|
||||
|
||||
void display_vec(std::ostream& out, expr_ref_vector const& v) const {
|
||||
for (unsigned i = 0; i < v.size(); ++i) {
|
||||
for (unsigned i = 0; i < v.size(); ++i)
|
||||
out << mk_pp(v[i], m) << " ";
|
||||
}
|
||||
out << "\n";
|
||||
}
|
||||
|
||||
|
||||
void display_vec(std::ostream& out, ptr_vector<expr> const& v) const {
|
||||
for (unsigned i = 0; i < v.size(); ++i) {
|
||||
for (unsigned i = 0; i < v.size(); ++i)
|
||||
out << mk_pp(v[i], m) << " ";
|
||||
}
|
||||
out << "\n";
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue