2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2026-04-29 06:48:41 +00:00

Gvwie updated

This commit is contained in:
2026-04-09 16:36:05 +03:00
parent 15479288cc
commit ae524f577a
9 changed files with 575 additions and 509 deletions
@@ -24,7 +24,7 @@ public static class IntArrayGenerator
/// - minGap / maxGap: approximate gap between runs (large gaps produce the jump examples)
/// </summary>
///
public static void InitRng() => rng = new Random(24241564);
public static void InitRng(int seed= 24241564) => rng = new Random(seed);
public static long[] GenerateRuns(int length,
int minRunSize = 3,