In reply to duggi bhavya:
The reason for your constraint failure is you declared a 2-D unpacked array of single bits.
Change your declaration to
rand logic [31:0] address[][];
Then your range constraint works.
In reply to duggi bhavya:
The reason for your constraint failure is you declared a 2-D unpacked array of single bits.
Change your declaration to
rand logic [31:0] address[][];
Then your range constraint works.