diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2025-07-29 12:12:43 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2025-07-29 12:12:43 +0200 |
| commit | ea0387796a349c91032fbcb10f50c6ad8607b0f6 (patch) | |
| tree | aed484690d24c0c28c7695d4b5389f2e3c341b96 /test/120_coord_invcoord_h48 | |
| parent | 52c21640508c3fc668107778ae027ff4428ebd89 (diff) | |
| download | nissy-core-ea0387796a349c91032fbcb10f50c6ad8607b0f6.tar.gz nissy-core-ea0387796a349c91032fbcb10f50c6ad8607b0f6.zip | |
All coordinates unsigned
Diffstat (limited to 'test/120_coord_invcoord_h48')
| -rw-r--r-- | test/120_coord_invcoord_h48/coord_invcoord_h48_tests.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/120_coord_invcoord_h48/coord_invcoord_h48_tests.c b/test/120_coord_invcoord_h48/coord_invcoord_h48_tests.c index 0333f27..b79d31d 100644 --- a/test/120_coord_invcoord_h48/coord_invcoord_h48_tests.c +++ b/test/120_coord_invcoord_h48/coord_invcoord_h48_tests.c | |||
| @@ -1,8 +1,8 @@ | |||
| 1 | #include "../test.h" | 1 | #include "../test.h" |
| 2 | 2 | ||
| 3 | size_t gendata_cocsep(unsigned char *, uint64_t *, cube_t *); | 3 | size_t gendata_cocsep(unsigned char *, uint64_t *, cube_t *); |
| 4 | int64_t coord_h48(cube_t, const uint32_t *, uint8_t); | 4 | uint64_t coord_h48(cube_t, const uint32_t *, uint8_t); |
| 5 | cube_t invcoord_h48(int64_t, const cube_t *, uint8_t); | 5 | cube_t invcoord_h48(uint64_t, const cube_t *, uint8_t); |
| 6 | cube_t transform(cube_t, uint8_t); | 6 | cube_t transform(cube_t, uint8_t); |
| 7 | 7 | ||
| 8 | void run(void) { | 8 | void run(void) { |
| @@ -13,7 +13,7 @@ void run(void) { | |||
| 13 | unsigned char buf[2000000]; | 13 | unsigned char buf[2000000]; |
| 14 | uint32_t *cocsepdata; | 14 | uint32_t *cocsepdata; |
| 15 | uint64_t selfsim[COCSEP_CLASSES]; | 15 | uint64_t selfsim[COCSEP_CLASSES]; |
| 16 | int64_t c, cc; | 16 | uint64_t c, cc; |
| 17 | oriented_cube_t cube; | 17 | oriented_cube_t cube; |
| 18 | cube_t invc, rep[COCSEP_CLASSES]; | 18 | cube_t invc, rep[COCSEP_CLASSES]; |
| 19 | 19 | ||
