RANDOMIZATION
//RAND KEYWORD
===============
1. Variable declared with the rand keyword are standard
random variable.
2. There values are uniformly distributed over their range
3. Random values can be repeated
rand bit[1:0] var1;
0,1,2,3
0,3,2,3
1,2,1,3
//RANDC KEYWORD
================
1. For variable declared with randc keyword
2. On randomization variable value does not repeat untill
every possible value has been assigned
randc bit[1:0] var1;
0,1,2,3 0,1,2,1 x
3,1,2,0
2,1,0,3
3,0,1,2
//CONSTRAINT BLOCKS
=========================
Basically, we use constaints to generate meaningfull data, if there is no constraint
then the simulator will try
to generate pure random and it might not be usefull for verification
1. Constraint blocks are_class members like tasks, functions, and variables
2. Constraint blocks will have a unique name within a .class
3. Constraint blocks consist of conditions or expressions to limit or control the
values for a random variable
4. Constraint blocks are enclosed within curly braces { }
5. Constraint blocks can be defined inside the_class or outside the_class like .extern
methods,
6. constraint block defined outside the_class is called as .extern constraint block
CONSTRAINT BLOCK SYNTAX
--------------------------
constraint <constraint_block_name> { <condition/expression>;
...
<condition/expression>;}
CONSTRAINT BLOCK EXAMPLE
constraint addr_range { addr > 5; }
where,
addr_range is .constraint block name
addr is constrained in such a way that on randomization addr will get a value
greater than 5