Index: /trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/commands/CMDtrainPPM.java
===================================================================
--- /trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/commands/CMDtrainPPM.java	(revision 7)
+++ /trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/commands/CMDtrainPPM.java	(revision 8)
@@ -3,4 +3,5 @@
 import java.security.InvalidParameterException;
 import java.util.List;
+import java.util.Random;
 
 import de.ugoe.cs.eventbench.data.Event;
@@ -34,5 +35,5 @@
 			if( sequences.size()>0 ) {
 				if( sequences.get(0).get(0) instanceof Event ) {
-					PredictionByPartialMatch model = new PredictionByPartialMatch();
+					PredictionByPartialMatch model = new PredictionByPartialMatch(new Random());
 					model.train(sequences);
 					if( GlobalDataContainer.getInstance().addData(modelname, model) ) {
@@ -40,5 +41,5 @@
 					}
 					// TODO TMP!!
-					model.randomSequence();
+					Console.traceln(model.randomSequence().toString());
 					
 				} else {
