From 11e6aeeaf5f08839c6effb8f68710081acf491bf Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Sun, 9 Mar 2025 07:43:37 +0100 Subject: Working (?) version of coordinate solver --- test/120_gendata_eo/gendata_eo_tests.c | 4 ++-- test/test.h | 2 +- 2 files changed, 3 insertions(+), 3 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 3a6ac07..46a0606 100644 --- a/test/120_gendata_eo/gendata_eo_tests.c +++ b/test/120_gendata_eo/gendata_eo_tests.c @@ -17,7 +17,7 @@ Pruning table values (from nissy): char buf[FULLSIZE]; -size_t gendata_coordinate_name(const char *, void *); +size_t gendata_coord_dispatch(const char *, void *); bool readtableinfo(uint64_t, const char *, tableinfo_t *); void run(void) { @@ -25,7 +25,7 @@ void run(void) { size_t result; tableinfo_t info; - result = gendata_coordinate_name("EO", buf); + result = gendata_coord_dispatch("EO", buf); if (readtableinfo(FULLSIZE, buf, &info) != NISSY_OK) { printf("Error reading info from table\n"); return; diff --git a/test/test.h b/test/test.h index e144527..4b281e0 100644 --- a/test/test.h +++ b/test/test.h @@ -14,7 +14,7 @@ #include "../src/solvers/h48/coordinate_macros.h" #include "../src/solvers/h48/map_types_macros.h" #include "../src/solvers/h48/gendata_types_macros.h" -#include "../src/solvers/coord/coord_types_macros.h" +#include "../src/solvers/coord/types_macros.h" #define STRLENMAX 10000 -- cgit v1.3