pgo: increase simulated terminal size

This commit is contained in:
Daniel Eklöf 2020-11-14 13:45:39 +01:00
parent 5ee9c19d21
commit 168ceaa927
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
3 changed files with 262147 additions and 4 deletions

262144
pgo-input-135x67.raw Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

6
pgo.c
View file

@ -172,9 +172,9 @@ extract_finish(struct extraction_context *context, char **text, size_t *len)
int
main(int argc, const char *const *argv)
{
const int row_count = 24;
const int col_count = 80;
const int grid_row_count = 1024;
const int row_count = 67;
const int col_count = 135;
const int grid_row_count = 16384;
struct row **rows = calloc(grid_row_count, sizeof(rows[0]));
for (int i = 0; i < grid_row_count; i++) {