mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
weaken assertion, remove dependency on hash_compare in unittest for hashtables
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
4b146a61ff
commit
a98502b62f
2 changed files with 2 additions and 2 deletions
|
@ -26,7 +26,7 @@ Revision History:
|
|||
|
||||
struct int_hash_proc { unsigned operator()(int x) const { return x * 3; } };
|
||||
typedef int_hashtable<int_hash_proc, default_eq<int> > int_set;
|
||||
typedef std::unordered_set<int, std::hash_compare<int, std::less<int> > > safe_int_set;
|
||||
typedef std::unordered_set<int> safe_int_set;
|
||||
// typedef safe_int_set int_set;
|
||||
|
||||
inline bool contains(int_set & h, int i) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue