diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2025-03-14 16:46:50 +0100 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2025-03-14 16:46:50 +0100 |
| commit | 9e6465bcc8f0d9bd1d78ad357a623452358ba7f2 (patch) | |
| tree | e5c43d89de835424445be9935e9c9dbd1933085d /src/nissy.c | |
| parent | 1e1fd628207034b0412c50e289f146d34c5baf71 (diff) | |
| download | nissy-core-9e6465bcc8f0d9bd1d78ad357a623452358ba7f2.tar.gz nissy-core-9e6465bcc8f0d9bd1d78ad357a623452358ba7f2.zip | |
Added checkdata for coord EO
Diffstat (limited to 'src/nissy.c')
| -rw-r--r-- | src/nissy.c | 5 |
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; |
