260 likes | 474 Views
Werkzeuge für Erstellung und Visualisierung von Endlichen Automaten. Referentinnen: Nataliya Kutsenko, Xenia Tschepuschtanov. Finite State Atomata Tools. AT&T FSM library TM. FSM C library stellt Tools zur Verfügung, um endliche Akzeptoren und Transducer: zu erzeugen zu kombinieren
E N D
Werkzeuge für Erstellung und Visualisierung von Endlichen Automaten Referentinnen: Nataliya Kutsenko, Xenia Tschepuschtanov
AT&T FSM library TM FSM C library stellt Tools zur Verfügung, um endliche Akzeptoren und Transducer: zu erzeugen zu kombinieren zu optimieren zu suchen (insgesamt um die 30 Funktionen) Entwickelt für Unix, mittlerweile auch Windows Version
FSM File Typen User Programm Level: Programme lesen aus und schreiben in Dateien und Pipelines Text Format: Acceptor Files Transduser Files Binary Format: ´Compilierte´ Repräsentation wird für alle FSM Utilities verwendet.
Acceptor Files www.research.att.com/sw/tools/fsm
Transducer Files www.research.att.com/sw/tools/fsm
Compiling, Printing, and Drawing FSMs Compiling from textual represantation: fsmcompile <A.txt >A.fsa fsmcompile –t <T.txt >T.fst Printing of binary represantation: fsmprint <A.fsa >A.txt fsmprint <T.fst >T.txt Drawing of binary represantation: fsmdraw <A.fsa | dot –Tjpg >A.jpg fsmdraw <T.fst | dot –Tjpg >T.jpg www.research.att.com/sw/tools/fsm
Funktionsumfang Union: Equation: C = A U B, C = A|B Program: fsmunion A.fsa B.fsa >C.fsa Concatanation: C = AB Equation: Program: fsmconcat A.fsa B.fsa >C.fsa Closure: Equation: C = A * Program: fsmclosure A.fsa >C.fsa www.research.att.com/sw/tools/fsm
Funktionsumfang Determinization Minimization Epsilon Removal … (zahlreiche Funktionen)
Fazit: Die Arbeit mit FSM Library erfolgt primär von der Konsole aus. Sehr großer Funktionsumfang Graphische Funktion eines Automaten möglich Keine Möglichkeit zur Umwandlung der RA in die EA und umgekehrt
JFLAP:Java Format Language and Automata Package Das Programm steht als ausführbare Anwendung zur Verfügung (Jar-Datei) und als eine Applet-Version
Funktionsumfang: Visualisierung, Simulation und Konstruktion verschiedener Automatentypen: - Endliche Automaten - Kellerautomaten - Turingmaschinen Umwandlung regulärer Ausdrücke in endliche Automaten und umgekehrt Minimierung von endlicher Automaten Kombinieren von endlichen Automaten
Fazit: Sehr großer Funktionsumfang Einfache Handhabung, umfangreiche Dokumentation mit Beispielen Laden und Speichern von Automaten ist möglich Quellcode ist verfügbar
FSA - Finite State Automaton processing in Python Dieses Module definiert eine FSA Klasse für Repräsentation und Verwendung von endlichen Automaten class FSA: def __init__(self, states, alphabet, transitions, initialState, finalStates): if states == None: states = self.collectStates(transitions, initialState, finalStates) else: ...
FSA & Python: FSA instance creation fsa.tuple() returns these values in that order, i.e. (states, alphabet, transitions, initialState, finalStates). Each element of transition is a tuple of a start state, an end state, and a label: (startState, endSTate, label).
FSA & Python: Methoden fsa.accepts(sequence) returns true or false fsa.determinized() returns an equivalent deterministic FSA fsa.minimized() returns an equivalent minimal FSA
FSA & Python: Funktionen concatenation(fsa1, fsa2) returns an fsa that accepts sequences composed of a sequence accepted by a, followed by a sequence accepted by b union(fsa1, fsa2) returns an fsa that accepts sequences accepted by both a and b closure(fsa) returns an fsa that accepts sequences composed of zero or more concatenations of sequences accepted by the argument equivalent(fsa1, fsa2) returns true if a and b accept the same language
FSA & Python: RE, Präsentation compileRE(string) returns an FSA that accepts the language described by string, where string is a list of symbols and '*', '+', and '|' operators, with '(' and ')' to control precedence. toDotString() returns a string suitable as *.dot file for the 'dot' program from AT&T GraphViz
FSM Simulator (Java) • Simulation des Automaten • Automat muss als „Code“ vorliegen
FSM Simulator (Java) • DFA //Type • --- Beispiel-Automat --- //Title • a b c // input alphabet • q0 q1 q2 // Machine states • 5. q0 // the initial state • q2 // final states • 7. q0 a q1 // transitions: input state, input symbol, output state • 8. q1 b q2 • q2 c q2 • 10. end //required http://www.cs.binghamton.edu/~software/fsm/fsmdoc.html
DescoGUI • DescoGUI ist ein Automaten-Editor (Windows) • Graphisch die Automaten erstellen und bearbeiten • Automaten in verschiedene Formate exportieren Unterstützte Formate: • AT&T DOT • LaTeX • Desco • XML based Formate
Kara - Programmieren mit endlichen Automaten • Das Leben eines Marienkäfers durch Automaten simulieren • für Schüler/innen • Einstieg in die Grundideen der Programmierung • Endliche Automaten sind einfach zu verstehen http://www.swisseduc.ch/informatik/karatojava/
Links: • AT&T FSM library TM www.research.att.com/sw/tools/fsm • JFLAP:Java Format Language and Automata Package www.jflap.org • PyFSA - Finite State Automaton processing in Python http://osteele.com/software/python/fsa/ • FSM Simulator (Java) http://www.cs.binghamton.edu/~software/fsm/fsmdoc.html • DescoGUI http://www.s2.chalmers.se/software/desco/ • Kara - Programmieren mit endlichen Automaten http://www.swisseduc.ch/informatik/karatojava/