source: trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/commands/CMDtest.java @ 18

Last change on this file since 18 was 18, checked in by sherbold, 13 years ago
  • removed all reference to de.ugoe.cs.eventbench.MarkovModel? and replaced them with de.ugoe.cs.eventbench.models.FirstOrderMarkovModel? and de.ugoe.cs.eventbench.models.IStochasticProcess
  • Property svn:mime-type set to text/plain
File size: 496 bytes
Line 
1package de.ugoe.cs.eventbench.commands;
2
3import java.util.List;
4import java.util.Random;
5
6import de.ugoe.cs.eventbench.models.PredictionByPartialMatch;
7import de.ugoe.cs.util.console.Command;
8
9public class CMDtest implements Command {
10
11        @Override
12        public void run(List<Object> parameters) {
13                PredictionByPartialMatch ppm = new PredictionByPartialMatch(3, new Random());
14                ppm.testStuff();
15
16        }
17
18        @Override
19        public void help() {
20                // TODO Auto-generated method stub
21
22        }
23
24}
Note: See TracBrowser for help on using the repository browser.