Skip to content

Commit

Permalink
add DFA single character simulation skeleton code
Browse files Browse the repository at this point in the history
  • Loading branch information
Louis-He committed Dec 8, 2024
1 parent add4897 commit 9efb249
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/dfa/dfa.rs
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,15 @@ impl DFA {

(None, false)
}

fn reset_simulation(&self) {
// TODO: Implement this function
}

fn simulate_single_char(&self, input: char) -> (Option<usize>) {
// TODO: Implement this function
None
}
}

// Helper functions for converting multiple NFAs to a single DFA
Expand Down

0 comments on commit 9efb249

Please sign in to comment.