From d54080032c09e6d8ac02b6d5446ea729d80849fb Mon Sep 17 00:00:00 2001 From: Camden Dixie O'Brien Date: Sun, 27 Oct 2024 13:24:12 +0000 Subject: [PATCH] Remove invalid assert() in construct() --- lib/construct.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/construct.c b/lib/construct.c index 0697046..7f79b15 100644 --- a/lib/construct.c +++ b/lib/construct.c @@ -201,6 +201,5 @@ void construct(const regex_t *regex, fsa_t *out) merge_fsas(out, &sequence_fsa); } - assert(out->initial == out->count - 1); assert(out->states[0].final); }