From 8b94d135429a9f3253cc7f25a1453b412065c4a0 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Sun, 18 May 2025 08:48:13 +0200 Subject: Refactor solver dispatch and checkdata --- test/120_gendata_eo/gendata_eo_tests.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/120_gendata_eo/gendata_eo_tests.c b/test/120_gendata_eo/gendata_eo_tests.c index ec1fd64..1b985c3 100644 --- a/test/120_gendata_eo/gendata_eo_tests.c +++ b/test/120_gendata_eo/gendata_eo_tests.c @@ -17,7 +17,8 @@ Pruning table values (from nissy): unsigned char buf[FULLSIZE]; -int64_t gendata_coord_dispatch(const char *, unsigned char *); +long long gendata_coord_dispatch( + const char *, unsigned long long, unsigned char *); int64_t readtableinfo(size_t, const unsigned char *, tableinfo_t *); void run(void) { @@ -25,7 +26,7 @@ void run(void) { size_t result; tableinfo_t info; - result = gendata_coord_dispatch("EO", buf); + result = gendata_coord_dispatch("coord_EO_FB", FULLSIZE, buf); if (readtableinfo(FULLSIZE, buf, &info) != NISSY_OK) { printf("Error reading info from table\n"); return; -- cgit v1.3