SSJ API Documentation
Stochastic Simulation in Java
Loading...
Searching...
No Matches
MonteCarloModelDouble.java
1package umontreal.ssj.mcqmctools;
2
3import umontreal.ssj.rng.*;
4
18
19public interface MonteCarloModelDouble {
20
21 // Optional
22 // public void simulate ();
23
27 public void simulate(RandomStream stream);
28
33 public double getPerformance();
34
38 public String toString();
39
43 public String getTag();
44
45}
An interface for a very simple simulation model for which Monte Carlo (MC) and RQMC experiments are t...
void simulate(RandomStream stream)
Simulates the model for one run.
String toString()
Returns a description of the model and its parameters.
double getPerformance()
Recovers and returns the realization of the performance measure, of type double.
String getTag()
Returns a short model name (tag) to be used in reports.
This interface defines the basic structures to handle multiple streams of uniform (pseudo)random numb...