Prepare files for public release

This commit is contained in:
2026-01-24 10:45:51 -05:00
parent 9898e6c975
commit 048e39016a
41 changed files with 2641 additions and 0 deletions

14
include/util/PairHash.h Normal file
View File

@@ -0,0 +1,14 @@
#ifndef CONTROL_PAIRHASH_H
#define CONTROL_PAIRHASH_H
#include <unordered_map>
// Custom hash function for std::pair
template <typename T> struct pair_hash {
std::size_t operator()(const std::pair<T, T> &p) const {
return std::hash<T>()(p.first) ^ (std::hash<T>()(p.second) << 1);
}
};
#endif // CONTROL_PAIRHASH_H