From 9e6465bcc8f0d9bd1d78ad357a623452358ba7f2 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Fri, 14 Mar 2025 16:46:50 +0100 Subject: Added checkdata for coord EO --- src/nissy.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/nissy.c') 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) } else if (!strncmp(info->solver, "h48", 3)) { getdistribution_h48((uint8_t *)buf + INFOSIZE, distr, info->h48h, info->bits); + } else if (!strncmp(info->solver, "coordinate solver for ", 22)) { + getdistribution_coord((uint8_t *)buf + INFOSIZE, + info->solver + 22, distr); } else if (!strncmp(info->solver, "eoesep data for h48", 19)) { return true; + } else if (!strncmp(info->solver, "coord helper table for ", 23)) { + return true; } else { LOG("checkdata: unknown solver %s\n", info->solver); return false; -- cgit v1.3