Package de.uka.ipd.sdq.simucomframework
Class ExperimentRunner
- java.lang.Object
-
- de.uka.ipd.sdq.simucomframework.ExperimentRunner
-
public class ExperimentRunner extends Object
Helper class to actually perform a simulation run using desmo-j
-
-
Field Summary
Fields Modifier and Type Field Description static ConfidenceStopCondition
confidenceStopCondition
-
Constructor Summary
Constructors Constructor Description ExperimentRunner()
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static double
run(SimuComModel model)
Run the given simulation model until the given simulation time is reachedstatic double
run(SimuComModel model, long simTime)
Deprecated.Use run(SimuComModel) instead as time is already stored in SimuComModel
-
-
-
Field Detail
-
confidenceStopCondition
public static ConfidenceStopCondition confidenceStopCondition
-
-
Method Detail
-
run
public static double run(SimuComModel model, long simTime)
Deprecated.Use run(SimuComModel) instead as time is already stored in SimuComModelRun the given simulation model until the given simulation time is reached- Parameters:
model
- Simulation model to executesimTime
- Maximum simulation time to run the simulation for
-
run
public static double run(SimuComModel model)
Run the given simulation model until the given simulation time is reached- Parameters:
model
- Simulation model to execute
-
-