public void SobolSingleCodeTest() { var s = Subrandom.SobolF(13, 1, 1, 1, 3, 11); foreach (var item in s.Take(1000)) { System.Diagnostics.Trace.WriteLine(item); } }
public void SobolSingleTest() { var p = new PolyGF2(3, 1, 0); var m = new[] { 1, 3, 7 }; foreach (var item in Subrandom.SobolF(p, m).Take(1000)) { System.Diagnostics.Trace.WriteLine(item); } var g = new Generator("SobolSingleTest"); Test(g, () => Subrandom.SobolF(p, m)); }