Simulador de Autómatas Finitos Deterministas (AFD) y Autómatas Finitos No Deterministas (AFND)
-
Updated
Jan 21, 2020 - Java
A finite-state machine (FSM), finite-state automaton (FSA), or simply state machine is a mathematical model of computation and an abstract machine that can be in exactly one of a finite number of states at any given time.
The FSM can change from one state to another in response to some inputs; the change from one state to another is called a transition.
An FSM is defined by a list of its states, its initial state, and the inputs that trigger each transition.
In computer science, FSM are widely used in modeling of application behavior (control theory), design of hardware digital systems, software engineering, compilers, network protocols, and computational linguistics.
Simulador de Autómatas Finitos Deterministas (AFD) y Autómatas Finitos No Deterministas (AFND)
A JavaFX-based tool for visualizing, editing, and minimizing DFAs (Deterministic Finite Automata), enabling users to efficiently create, optimize, and work with state machines in a user-friendly interface.
A teaching aid for concepts and algorithms in logic
📋 A regular language recognizer software using Finite Automata
Language theory and compilation introduction TPs.
Samples of algorithms to verify strings / words using finite machines.
Please read the Design Report.
This project aims to simplify regular expressions using unique identifiers for equivalent expressions. It integrates various representations of regular languages and provides efficient algorithms for simplification and conversion. The system includes an additional layer for optimizing expression size using a Union-Find structure.
A simple state machine library.
Scanner for a custom mini language.
This is a repository for homework on programming methods
Implementações de projetos relacionados à teoria da computação e compiladores
Native Java implementation of a an deterministic finite automaton.
Implementation Of finite State Machines In JAVA