From 96c91046d390b6d5c557ed0a574eacd407cce48c Mon Sep 17 00:00:00 2001 From: Jesper Jensen Date: Wed, 11 Feb 2026 23:01:51 +0100 Subject: Add another example --- src/solve.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/solve.c b/src/solve.c index 630a0a6..8ea65c1 100644 --- a/src/solve.c +++ b/src/solve.c @@ -51,7 +51,7 @@ void free_constraints(struct constraints *c) { // @COMPL: We should do something better than this. I don't really know what. struct frontier { - struct component *elems[64]; + struct component *elems[128]; size_t n; }; @@ -65,7 +65,7 @@ static bool frontier_scan(struct frontier *frontier, struct component *component static void add_frontier(struct frontier *frontier, struct component *component) { assert(!frontier_scan(frontier, component)); - assert(frontier->n < 64); + assert(frontier->n < 128); frontier->elems[frontier->n++] = component; } -- cgit v1.2.3