예제 #1
0
 internal BayesianSamplingAlgorithm(SamplingAlgorithmType samplingAlgorithmType) : base(samplingAlgorithmType)
 {
     SamplingAlgorithmType = samplingAlgorithmType;
 }
예제 #2
0
 internal RandomSamplingAlgorithm(SamplingAlgorithmType samplingAlgorithmType, RandomSamplingAlgorithmRule?rule, int?seed) : base(samplingAlgorithmType)
 {
     Rule = rule;
     Seed = seed;
     SamplingAlgorithmType = samplingAlgorithmType;
 }
예제 #3
0
 internal GridSamplingAlgorithm(SamplingAlgorithmType samplingAlgorithmType) : base(samplingAlgorithmType)
 {
     SamplingAlgorithmType = samplingAlgorithmType;
 }
예제 #4
0
 internal SamplingAlgorithm(SamplingAlgorithmType samplingAlgorithmType)
 {
     SamplingAlgorithmType = samplingAlgorithmType;
 }