mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
na
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
f4472927c0
commit
31e16c7d60
2 changed files with 48 additions and 79 deletions
|
@ -32,11 +32,13 @@ using char_vector = old_svector<char>;
|
|||
using signed_char_vector = old_svector<signed char>;
|
||||
using double_vector = old_svector<double>;
|
||||
|
||||
inline std::ostream& operator<<(std::ostream& out, unsigned_vector const& v) {
|
||||
template<typename T>
|
||||
inline std::ostream& operator<<(std::ostream& out, old_svector<T> const& v) {
|
||||
for (unsigned u : v) out << u << " ";
|
||||
return out;
|
||||
}
|
||||
|
||||
|
||||
template<typename Hash, typename Vec>
|
||||
struct vector_hash_tpl {
|
||||
Hash m_hash;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue