Functional Coverage : Transition coverage

Hi,

I am using transition coverage,

Here is the example,
muxcode_inc_1: coverpoint ipi0_mixcode{
// bins T2 = { (5’h00 => 5’h1E) , (5’h00 => 5’h1D), (5’h00 => 5’h1C) ,(5’h00 => 5’h1B) …,5’h1A,5’h19,5’h18,5’h17,5’h16,5’h15,5’h14,5’h13,5’h12,5’h11,5’h10,5’hF,5’h20,5’h21,5’h22,5’h23,5’h24,5’h25,5’h26,5’h27,5’h28,5’h29,5’h2A,5’h2B,5’h2C,5’h2D,5’h2E,5’h2F)};
// }

Instead i want to code as following,
bins T2 = { (5’h00 => [5’h1E to 5’h09)} - so that i can mention the range 1E to 09.

Kindly need coding style.

-Thanks in Advance

-Regards,
-Raja.

In reply to sraja:


bins T2 = (8'h00 => [8'h09:8'h1E]); //Any transition will hit get bin covered
bins T2[] = (8'h00 => [8'h09:8'h1E]); //Each transition will have its own bin

Thank you…