Last change
on this file since 19 was
18,
checked in by sherbold, 14 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 | |
---|
1 | package de.ugoe.cs.eventbench.commands;
|
---|
2 |
|
---|
3 | import java.util.List;
|
---|
4 | import java.util.Random;
|
---|
5 |
|
---|
6 | import de.ugoe.cs.eventbench.models.PredictionByPartialMatch;
|
---|
7 | import de.ugoe.cs.util.console.Command;
|
---|
8 |
|
---|
9 | public 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.