blob: d2f1a0e0dac7690515c1231087f0af62e6126c48 [file] [log] [blame]
/*
:name: dist_poisson_function
:description: $dist_poisson test
:should_fail: 0
:tags: 20.15
:type: simulation parsing
*/
module top();
initial begin
integer seed = 1234;
$display("%d", $dist_poisson(seed, 100));
end
endmodule