aboutsummaryrefslogtreecommitdiff
path: root/src/nissy.c
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano@tronto.net>2025-03-14 16:46:50 +0100
committerSebastiano Tronto <sebastiano@tronto.net>2025-03-14 16:46:50 +0100
commit9e6465bcc8f0d9bd1d78ad357a623452358ba7f2 (patch)
treee5c43d89de835424445be9935e9c9dbd1933085d /src/nissy.c
parent1e1fd628207034b0412c50e289f146d34c5baf71 (diff)
downloadnissy-core-9e6465bcc8f0d9bd1d78ad357a623452358ba7f2.tar.gz
nissy-core-9e6465bcc8f0d9bd1d78ad357a623452358ba7f2.zip
Added checkdata for coord EO
Diffstat (limited to 'src/nissy.c')
-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