From d44a25f41251ec36d4c9d64d217fefb9471b8f7c Mon Sep 17 00:00:00 2001 From: Aadhavan Srinivasan Date: Mon, 27 Jan 2025 20:04:24 -0500 Subject: [PATCH] Removed a type that I wasn't using --- nfa.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/nfa.go b/nfa.go index 66b09ce..a2ac5f0 100644 --- a/nfa.go +++ b/nfa.go @@ -205,11 +205,6 @@ func (s State) matchesFor(str []rune, idx int) ([]*State, int) { return listTransitions, numTransitions } -type NFA struct { - start State - outputs []State -} - // verifyLastStatesHelper performs the depth-first recursion needed for verifyLastStates func verifyLastStatesHelper(state *State, visited map[*State]bool) { if len(state.transitions) == 0 {