SSJ API Documentation
Stochastic Simulation in Java
Loading...
Searching...
No Matches
MonteCarloModelDoubleArray.java
1package umontreal.ssj.mcqmctools;
2
3import umontreal.ssj.rng.*;
4
10
12
13 // Optional
14 // public void simulate ();
15
19 public void simulate(RandomStream stream);
20
24 public double[] getPerformance();
25
29 public int getPerformanceDim();
30
34 public String toString();
35
39 public String getTag();
40
41}
Similar to MonteCarloModelDouble except that the returned performance is an array of real numbers.
String toString()
Returns a short description of the model and its parameters.
int getPerformanceDim()
Returns the dimension of the array of performance measures.
String getTag()
Returns a short model name (tag) to be used in reports.
void simulate(RandomStream stream)
Simulates the model for one run.
double[] getPerformance()
Recovers and returns the realization of the vector of performance measures.
This interface defines the basic structures to handle multiple streams of uniform (pseudo)random numb...