aboutsummaryrefslogtreecommitdiff
path: root/scripts/write_config/solution.c
blob: f575864e21b8adca27d06d0edcd87487f8ee6d29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include "solution.h"

extern int exit_status;
void solution_check(struct symlist *sl, FILE * f) {
    int c;
    // skip first line
    do
        c = fgetc(f);
    while (c != EOF && c != '\n');

    char *w;
    size_t w_size = 1, w_pos = 0;
    w = malloc((w_size + 1) * sizeof(char));
    do {
        c = fgetc(f);
        if (c == ' ' || c == '\n') {
            w[w_pos] = '\0';
            w_pos = 0;
            char *ww = w;
            bool neg = false;
            if (w[0] == '-') {
                neg = true;
                ww = w + 1;
            }
            int id = atoi(ww);
            if ((unsigned) id > sl->maxid)
                break;
            if (id == 0)
                continue;
            if (sl->array[id - 1].sym == NULL)
                continue;
            if (neg ==
                (sym_get_tristate_value(sl->array[id - 1].sym) ==
                 no ? true : false))
            {
            } else {
                printf("Problem %s=%d/%d\n", sl->array[id - 1].sym->name,
                       !neg,
                       sym_get_tristate_value(sl->array[id - 1].sym));
                exit_status++;
            }
        } else {
            if (w_pos >= w_size) {
                w_size *= 2;
                w = realloc(w, (w_size + 1) * sizeof(char));
            }
            w[w_pos++] = (char) c;
        }
    } while (c != EOF && c != '\n');
}