/********************* */ /*! \file hash.h ** \verbatim ** Original author: Christopher L. Conway ** Major contributors: Morgan Deters ** Minor contributors (to current version): Dejan Jovanovic ** This file is part of the CVC4 project. ** Copyright (c) 2009-2014 New York University and The University of Iowa ** See the file COPYING in the top-level source directory for licensing ** information.\endverbatim ** ** \brief [[ Add one-line brief description here ]] ** ** [[ Add lengthier description here ]] ** \todo document this file **/ #include "cvc4_public.h" #ifndef __CVC4__HASH_H #define __CVC4__HASH_H // in case it's not been declared as a namespace yet namespace __gnu_cxx {} #include #include namespace __gnu_cxx { #ifdef CVC4_NEED_HASH_UINT64_T // on some versions and architectures of GNU C++, we need a // specialization of hash for 64-bit values template <> struct hash { size_t operator()(uint64_t v) const { return v; } };/* struct hash */ #endif /* CVC4_NEED_HASH_UINT64_T */ }/* __gnu_cxx namespace */ // hackish: treat hash stuff as if it were in std namespace namespace std { using namespace __gnu_cxx; } namespace CVC4 { struct StringHashFunction { size_t operator()(const std::string& str) const { return __gnu_cxx::hash()(str.c_str()); } };/* struct StringHashFunction */ template , class HashU = std::hash > struct PairHashFunction { size_t operator()(const std::pair& pr) const { return HashT()(pr.first) ^ HashU()(pr.second); } };/* struct PairHashFunction */ }/* CVC4 namespace */ #endif /* __CVC4__HASH_H */