Skip to content
This repository was archived by the owner on Aug 26, 2022. It is now read-only.

Commit 4de9068

Browse files
committed
CHanged portfolio scheduling bounds
1 parent 0b4cafd commit 4de9068

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tools/Testing/Tester/Testing/TestingPortfolio.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ internal static class TestingPortfolio
3030
/// <param name="configuration">Configuration</param>
3131
internal static void ConfigureStrategyForCurrentProcess(Configuration configuration)
3232
{
33-
// Random, PCT[1], ProbabilisticRandom[5], PCT[5], ProbabilisticRandom[10], PCT[10], etc.
33+
// Random, PCT[1], ProbabilisticRandom[1], PCT[5], ProbabilisticRandom[2], PCT[10], etc.
3434
if (configuration.TestingProcessId == 0)
3535
{
3636
configuration.SchedulingStrategy = SchedulingStrategy.Random;
3737
}
3838
else if (configuration.TestingProcessId % 2 == 0)
3939
{
4040
configuration.SchedulingStrategy = SchedulingStrategy.ProbabilisticRandom;
41-
configuration.CoinFlipBound = 5 * (int)(configuration.TestingProcessId / 2);
41+
configuration.CoinFlipBound = (int)(configuration.TestingProcessId / 2);
4242
}
4343
else if (configuration.TestingProcessId == 1)
4444
{

0 commit comments

Comments
 (0)