Ejemplo n.º 1
0
 public RandomMockDataRepository(IRandomGeneratorFactory factory, TypeFinder finder, IOptionsSnapshot <MockGeneratorOptions> options)
 {
     _generatorFactory = factory;
     _finder           = finder;
     _options          = options;
 }
Ejemplo n.º 2
0
 public PerlinNoiseGenerator(INoiseComponentsGenerator noiseComponentsGenerator, IRandomGeneratorFactory randomGeneratorFactory)
 {
     _noiseComponentsGenerator = noiseComponentsGenerator;
     _randomGeneratorFactory = randomGeneratorFactory;
 }
Ejemplo n.º 3
0
 public MonteCarloConfig(int nbPaths, IRandomGeneratorFactory randomGenerator, Duration mcStep = null)
 {
     RandomGenerator = randomGenerator;
     NbPaths         = nbPaths;
     McStep          = mcStep;
 }