3
0
Fork 0
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:
Nikolaj Bjorner 2017-10-18 17:37:38 -07:00
parent 6155362571
commit dc6ed64da1
9 changed files with 254 additions and 133 deletions

View file

@ -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;