Jul 03, 2024

Wiki

Python

Aide

edit SideBar

Search

FSA


Présentation

Le module FSA (Finite State Automaton) permet de manipuler des automates : déterminisation, minimisation, représentation graphique, etc.

Il se récupère .

Utilisation

  >>> from FSA import *
  >>> tp = concatenation(singleton('a'),
  ...                    union(singleton('b'),
  ...                    closure(singleton('c'))))
  >>> tp.view()
  >>> td=tp.minimized()
  >>> td.view()

Pour de l'aide :

  >>> help(FSA)

Page Actions

Recent Changes

Group & Page

Back Links