Rev 7676 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 7676 | Rev 8185 | ||
---|---|---|---|
Line 18... | Line 18... | ||
18 | /* Solves cryptarithms, to be interfaced by wims. */ |
18 | /* Solves cryptarithms, to be interfaced by wims. */ |
19 | 19 | ||
20 | #define MAX_LINES 64 |
20 | #define MAX_LINES 64 |
21 | #define MAX_CHARS 32 |
21 | #define MAX_CHARS 32 |
22 | 22 | ||
23 | #include "../ |
23 | #include "../includes.h" |
24 | 24 | ||
25 | char basetab[MAX_LINES][MAX_CHARS]; |
25 | char basetab[MAX_LINES][MAX_CHARS]; |
26 | int carry[MAX_LINES][MAX_CHARS+8]; |
26 | int carry[MAX_LINES][MAX_CHARS+8]; |
27 | char corresp[32],bcorresp[16]; |
27 | char corresp[32],bcorresp[16]; |
28 | int linecnt,charcnt[MAX_LINES],activelen,maxlen; |
28 | int linecnt,charcnt[MAX_LINES],activelen,maxlen; |