State Machine for PHP
-
Updated
Aug 6, 2023 - PHP
A finite-state machine (FSM), finite-state automaton (FSA), or simply state machine is a mathematical model of computation and an abstract machine that can be in exactly one of a finite number of states at any given time.
The FSM can change from one state to another in response to some inputs; the change from one state to another is called a transition.
An FSM is defined by a list of its states, its initial state, and the inputs that trigger each transition.
In computer science, FSM are widely used in modeling of application behavior (control theory), design of hardware digital systems, software engineering, compilers, network protocols, and computational linguistics.
State Machine for PHP
🌁 Nondeterministic Finite State Automata for Java (in plain English: flowcharts with multiple possible outcomes)
Finite-State Machine (FSM) for Arduino
VUTBR - FIT: TIN 2018/2019
Finite state machine library based on C++20 coroutine symmetric transfer
Deterministic finite automaton
FlyWeight Finite Automata Simulator
A simple generic library to implement FSMs (Finite-State Machines) and the State Design Pattern in PHP.