public UniformGamblersSampler(SamplerExportState <T> state)
 {
     throw new NotImplementedException();
 }
Example #2
0
 /// <summary>
 /// Loads a Gambler's Sampler from the given sampler state
 /// </summary>
 /// <typeparam name="T"></typeparam>
 /// <param name="state"></param>
 /// <returns></returns>
 public static ISampler <T> FromExportState <T>(SamplerExportState <T> state)
 {
     return(new GamblersSampler <T>(state));
 }