summaryrefslogtreecommitdiff
path: root/src/utils/automata/dfa_minimizer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/automata/dfa_minimizer.hpp')
-rw-r--r--src/utils/automata/dfa_minimizer.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/automata/dfa_minimizer.hpp b/src/utils/automata/dfa_minimizer.hpp
index d536bd8b..69bc0b52 100644
--- a/src/utils/automata/dfa_minimizer.hpp
+++ b/src/utils/automata/dfa_minimizer.hpp
@@ -51,7 +51,7 @@ class DFAMinimizer {
// Key used for state pairs. Reordering names will result in the same key.
class StatePairKey {
public:
- struct hash_t {
+ struct Hash {
[[nodiscard]] auto operator()(StatePairKey const& p) const
-> std::size_t {
std::size_t hash{};
@@ -91,7 +91,7 @@ class DFAMinimizer {
};
using state_pairs_t =
- std::unordered_map<StatePairKey, StatePairValue, StatePairKey::hash_t>;
+ std::unordered_map<StatePairKey, StatePairValue, StatePairKey::Hash>;
public:
using bisimulation_t = std::unordered_map<std::string, std::string>;