17 skills found
Devorein / FautonAn ecosystem of packages to work with automaton and parsers (dfa/nfa/e-nfa/regex/cfg/pda)
alirezakay / RegexToDFAconverting regex (regular expression) to DFA directly by creating syntax tree in java
Megha-Bose / Automata Theory ConversionsConversions covered: regex to NFA, NFA to DFA, DFA to regex. Minimizing DFA.
vinyasns / Dfa To RegexA Python implementation to convert a Deterministic Finite Automata to Regular Expression using state elimination method
MainakRepositor / Fake News FinderDetects whether a news or article is fake by lexicographical character checking and tokenization. The project tokenizes the words present in the news and checks the polarity of each letter and it's usage following regex rules. These regex rules convert the word sink into a DFA and the states are observed. If the DFA states match with a real news data, then it is considered real. Else it will try to recapture information from the next line. If the entire data is fake then it is declared as a fake news.
GitPinkRabbit / Finite Automata In CppSome C++ Libraries of Finite Automata (DFA minimize!) (Regex to NFA to DFA (working on)) (DFA to Regex (🕊))
MashPlant / Re2dfaConvert regex(es) to dfa.
gaserashraf / Regex To NFA DFAConvert regex to NFA, DFA and minimize DFA
SicroAtGit / RegEx EngineA RegEx engine that builds NFA/DFA and always returns the longest match.
TomC333 / Regex To DfaRegular Expression To Deterministic Finite State Automata
AustinZuniga / DFA Implemented PythonDeteministic Finite Automaton Implementation in Python Language
iordachebogdan / RegexToDFAConverterC++ application that converts regular expressions into Deterministic Finite Automata.
ghallak / Regex To DfaConverting a Regular Expression Directly to a DFA
akash-07 / Regex To DFAImplementation of algorithm to convert Regular Expression directly to a DFA.
mihai-craciun / Regex To DfaA python script that generates an finite state automata from a regular expression
alexandru-balan / Regex To DfaA program that can take a regex as input and return a deterministic finite automaton that recognises the same language.
OpenWeavers / Regex To DfaA Python Implementation to convert Regular Expression directly to DFA