xiiregexbuilder

FPGA-Accelerated Regular Expression Matching Engine
commit 51a64e9e0dfe25c9eb116a39a1364e21e0996635
parent 2296e98334fb70f3982baf354471684a12b83ae2
Author: RahulSannapureddy <rahul.sannapureddy@gmail.com>
Date:   Tue, 24 Mar 2026 10:00:00 +0530

Week 1: Add initial test inputs and regex patterns (Part 1: Initial definitions)

Diffstat:
Ainputs/regexes.txt | 6++++++
Ainputs/test_strings.txt | 6++++++
2 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/inputs/regexes.txt b/inputs/regexes.txt @@ -0,0 +1,6 @@ +# Sample Regex Input File +# One regex per line + +# Match 'a' or 'b' +a|b + diff --git a/inputs/test_strings.txt b/inputs/test_strings.txt @@ -0,0 +1,6 @@ +# Test Strings +# Each line is a test string +a +b +c +aa