| 947 | } |
| 948 | |
| 949 | std::array<uint64_t, 2> getHash() const override |
| 950 | { |
| 951 | std::array<uint64_t, 2> ret; |
| 952 | ret[0] = dict.computeHash(0); |
| 953 | const std::string s = static_cast<const _Derived*>(this)->tmid().str() + static_cast<const _Derived*>(this)->twid().str(); |
| 954 | ret[0] = serializer::computeHashMany(ret[0], s, realV, globalStep, docs.size()); |
| 955 | ret[1] = globalState.computeHash(0); |
| 956 | ret[1] = static_cast<const _Derived*>(this)->computeHash(ret[1]); |
| 957 | return ret; |
| 958 | } |
| 959 | }; |
| 960 | |
| 961 | } |
nothing calls this directly
no test coverage detected