Cross coverage for transition bins, with each bin containing more than 1 value in it

In reply to J_M:

If this is for a finite-state-machine, many tools have FSM coverage built in to figure out all the possible transitions, and which ones were taken.

Otherwise if you are looking to cover all possible transitions of 5 operations, you can create a shift register that you sample every 5 cycles. that would give you thousands of bins. Is that what you really want?