123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- package fsm
- func IsComplete[SK, EK comparable, EV any](Matrix[SK, EK, EV]) bool {
- panic("not implemented")
- }
- func InCompleteWithoutSelfLoops[SK, EK comparable, EV any]() bool {
- panic("not implemented")
- }
- func IsReachable[SK, EK comparable, EV any](s1, s2 State[SK, EK, EV]) bool {
- panic("not implemented")
- }
- func IsAccessible[SK, EK comparable, EV any]() bool {
- panic("not implemented")
- }
- func IsCoAccessible[SK, EK comparable, EV any]() bool {
- panic("not implemented")
- }
- func IsTrimmed[SK, EK comparable, EV any]() bool {
- panic("not implemented")
- }
- func IsStronglyConnected[SK, EK comparable, EV any]() bool {
- panic("not implemented")
- }
- func IsFSMContextCancellable[SK, EK comparable, EV any](FSM[SK, EK, EV]) bool {
- panic("not implemented")
- }
|