blob: 3f676229e18361d27fc406396b17482575bcf88b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
package basiclearner;
import com.google.common.collect.ImmutableSet;
import de.learnlib.api.SUL;
import java.io.IOException;
import java.util.Collection;
/**
* Created by ramon on 13-12-16.
*/
public class ExampleExperiment {
/**
* Example of how to call a learner in a simple way with this class. Learns the ExampleSUL.
* @param args
* @throws IOException
*/
public static void main(String [] args) throws IOException {
// Load the actual SUL-class
// For a SUL over a socket, use the SocketSUL-class
// You can also program an own SUL-class if you extend SUL<String,String> (or SUL<S,T> in
// general, with S and T the input and output types - but this class assumes strings)
SUL<String,String> sul = new ExampleSUL();
// the input alphabet
Collection<String> inputAlphabet = ImmutableSet.of("a", "b", "c");
try {
// runControlledExperiment for detailed statistics, runSimpleExperiment for just the result
BasicLearner.runControlledExperiment(sul, BasicLearner.LearningMethod.LStar, BasicLearner.TestingMethod.RandomWalk, inputAlphabet);
} finally {
if (sul instanceof AutoCloseable) {
try {
((AutoCloseable) sul).close();
} catch (Exception exception) {
// should not happen
}
}
}
}
}
|