I am trying to understand the difference between := and :/
class packet
rand bit[7:0] b;
rand bit[7:0] a;
constraint adist {a dist {0:=9, [1:255]:=1};}
constraint bdist {b dist {0:/9, [1:255]:/1};}
endclass
What would be the probability of a being 0 and b being 0?
Is the probability of a being 0 = 9/264 and b being 0 = 9/10 ?