We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
API:
var scenario = Scenario.Create("scenario", async context => { var r1 = context.Random.Next(minValue: 10, maxValue: 100); var r2 = Zipf.Sample(s: 0.9, n: 100, rnd: random); var ratios = new[] {0.1, 0.2, 0.7}; // 10%, 20%, 70% int[] r3 = Multinomial.Sample(random, ratios, 1); // r3 = [0, 0, 1] return Response.Ok(); }
Dynamic-workloads
The text was updated successfully, but these errors were encountered:
AntyaDev
No branches or pull requests
API:
Dynamic-workloads
The text was updated successfully, but these errors were encountered: