Here is a question to those who have experience with Boost MSM. I have a very large state machine implemented with Boost MSM and finally today I ran out of the vector limit of 50 (there are too many events coming in to my state machine which cannot be avoided). I have created higher vector headers (vector60, vector70 etc) but I wanted to compact my state machine as a whole.
Question is, does MSM support hierarchical state machines. For example (correct me if I am wrong), in an hierarchical state machine, if an event is not handled in a particular state, that event will be forwarded to the parent state of the current state & so on.
As part of reducing the transition table size, I was hoping to create a parent state where events with common handlers will be processed thereby reducing the transition table size.
Any advise/comments appreciated.
Thanks