How learnlib works #96
-
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Unfortunately, some of the code is only available in the current development version. However, we are currently preparing a release which hopefully arrives in 2-3 weeks. So you could start to familiarize yourself with the code using the current development version and then use the new release in your project later. |
Beta Was this translation helpful? Give feedback.
We have an examples module in the repository which should give you ready-to-use starting points on how to work with (the different features of) LearnLib. If you have any specific questions about one of the concepts/components, feel free to ask.
The
automata-util
module holds aRandomAutomata
class that allows you to generate random automata of different kinds (such as DFAs). If you want to (de-)serialize DFAs to (from) DOT, there exists anautomata-serialization-dot
module that provides aDOTParsers
andGraphDOT
class for (de-) serializing automata. You may have a look at the test cases to see how to operate them. Again, if you have any specific questions, just ask.Unfortunately, s…