Hacker News new | ask | show | jobs
by 0xFFC 1913 days ago
Very interesting project. Sorry for my ignorance though, where in the industry something like this might be useful?
1 comments

State machines are a great way to control defects by producing states which are only able to mutate in certain specific pre-defined ways

The defacto example is usually a traffic light. Green is permitted to transition to yellow, but never to red; a state machine makes a bug of that form impossible

Obviously, it's nominally used for more complex stuff, but in general, all of your appliances are state machines. Your microwave especially.