Files
korg-distributed/tests/tcp/props/phi5.pml
2026-03-12 02:40:33 -04:00

14 lines
232 B
Promela

/* liveness: SYN_RECEIVED resolution*/
ltl phi5 {
always (
(state[0] == SynRecState)
implies (
eventually (
(state[0] == EstState ||
state[0] == FinW1State ||
state[0] == ClosedState)
)
)
)
}