If sample_0 transitions like this: 0=>1=>2=>0
does this count as a hit for bins trans_0? because the value 2 is not in the transition, does it just wait for the next sample? or does it try again from the first value in the transition?
and sample_0 transitions like this: 1=>1=>1=>1.
Does this count as 2 hits? or 3?
In other words, does the coverpoint continue only from where it left off with the last sample, or does it also simultaneously try to sample again from the beginning of the transition?
Another question: Anything not specified in the current bins will automatically be ignore?
Like for example, if sample_0 transitions like this: 1=>1=>0=>1, this only counts as 1 hit?
Thanks!