add mcc_finite_state_machine.h (rewrite MccFiniteStateMachine class)

This commit is contained in:
Timur A. Fatkhullin
2025-05-31 00:30:39 +03:00
parent 10dd92baab
commit 74b4cf06b1
3 changed files with 199 additions and 2 deletions

View File

@@ -102,7 +102,7 @@ public:
using st_t = typename PT::second_type;
// static constexpr bool non_unique = in_pair_v<ev_t, PTs...>;
static constexpr bool non_unique = (std::same_as<ev_t, typename PTs::second_type> || ...);
static constexpr bool non_unique = (std::same_as<ev_t, typename PTs::first_type> || ...);
public:
using events_t =