aboutsummaryrefslogtreecommitdiff
path: root/src/nissy.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/nissy.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/nissy.c b/src/nissy.c
index 2766b12..431362d 100644
--- a/src/nissy.c
+++ b/src/nissy.c
@@ -80,8 +80,13 @@ checkdata(const char *buf, const tableinfo_t *info)
80 } else if (!strncmp(info->solver, "h48", 3)) { 80 } else if (!strncmp(info->solver, "h48", 3)) {
81 getdistribution_h48((uint8_t *)buf + INFOSIZE, distr, 81 getdistribution_h48((uint8_t *)buf + INFOSIZE, distr,
82 info->h48h, info->bits); 82 info->h48h, info->bits);
83 } else if (!strncmp(info->solver, "coordinate solver for ", 22)) {
84 getdistribution_coord((uint8_t *)buf + INFOSIZE,
85 info->solver + 22, distr);
83 } else if (!strncmp(info->solver, "eoesep data for h48", 19)) { 86 } else if (!strncmp(info->solver, "eoesep data for h48", 19)) {
84 return true; 87 return true;
88 } else if (!strncmp(info->solver, "coord helper table for ", 23)) {
89 return true;
85 } else { 90 } else {
86 LOG("checkdata: unknown solver %s\n", info->solver); 91 LOG("checkdata: unknown solver %s\n", info->solver);
87 return false; 92 return false;

Generated with cgit - Back to sebastiano.tronto.net