mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 11:25:51 +00:00
na
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
d8e00bc02e
commit
cc394f0fe9
5 changed files with 25 additions and 21 deletions
|
@ -94,7 +94,7 @@ public:
|
|||
m_index.resize(0);
|
||||
}
|
||||
|
||||
std::ostream& operator<<(std::ostream& out) const {
|
||||
std::ostream& display(std::ostream& out) const {
|
||||
for (unsigned j : m_index) {
|
||||
out << j << " ";
|
||||
}
|
||||
|
@ -105,4 +105,10 @@ public:
|
|||
const unsigned * end() const { return m_index.end(); }
|
||||
const unsigned_vector& index() { return m_index; }
|
||||
};
|
||||
|
||||
|
||||
}
|
||||
|
||||
inline std::ostream& operator<<(std::ostream& out, lp::u_set const& s) {
|
||||
return s.display(out);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue