mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
testing bdd for elim-vars
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
6155362571
commit
dc6ed64da1
9 changed files with 254 additions and 133 deletions
|
@ -472,6 +472,11 @@ typedef svector<char> char_vector;
|
|||
typedef svector<signed char> signed_char_vector;
|
||||
typedef svector<double> double_vector;
|
||||
|
||||
inline std::ostream& operator<<(std::ostream& out, unsigned_vector 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