constraint odd number code
constraint odd number code:-
*/
/*---------------odd--------------*/
/*
class b1;
rand int a[];
constraint a1{a.size==(10);}
constraint a2{foreach (a[i])
if(i%2==1)
a[i]==i;}
endclass
b1 a3;
module test;
initial
begin
a3=new;
assert(a3.randomize());
$display("the value %p",a3.a);
end
endmodule
*/
Comments
Post a Comment