diff options
| author | Jesper Jensen <jesper@jnsn.dev> | 2026-02-11 23:01:51 +0100 |
|---|---|---|
| committer | Jesper Jensen <jesper@jnsn.dev> | 2026-02-11 23:01:51 +0100 |
| commit | 96c91046d390b6d5c557ed0a574eacd407cce48c (patch) | |
| tree | b0f3289180aa229469618b08f8590af3a8e5215a /src/solve.c | |
| parent | 679907d1b2023396b5f353b3390ca0879fc15e50 (diff) | |
Add another example
Diffstat (limited to 'src/solve.c')
| -rw-r--r-- | src/solve.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |
