Search in sources :

Example 1 with ExecuteModelCommand

use of de.prob.animator.command.ExecuteModelCommand in project prob2 by bendisposto.

the class ExecuteRun method executeModel.

private void executeModel(final StateSpace stateSpace) {
    Trace t = new Trace(stateSpace);
    this.rootState = t.getCurrentState();
    executeModelCommand = new ExecuteModelCommand(stateSpace, t.getCurrentState(), maxNumberOfStatesToBeExecuted, continueAfterErrors, timeout);
    stateSpace.execute(executeModelCommand);
}
Also used : Trace(de.prob.statespace.Trace) ExecuteModelCommand(de.prob.animator.command.ExecuteModelCommand)

Aggregations

ExecuteModelCommand (de.prob.animator.command.ExecuteModelCommand)1 Trace (de.prob.statespace.Trace)1