示例#1
0
 internal Forecasting(MonteCarloSimulation montecarlo, int numberOfSimulations, int numberOfForecastIntervals)
 {
     _montecarlo                = montecarlo;
     _numberOfSimulations       = numberOfSimulations;
     _numberOfForecastIntervals = numberOfForecastIntervals;
 }
示例#2
0
 public Forecasting(MonteCarloSimulation montecarlo) : this(montecarlo, NUMBER_OF_SIMULATIONS, NUMBER_OF_FORECAST_INTERVALS)
 {
 }