diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2023-11-10 14:44:48 +0100 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2023-11-10 14:44:48 +0100 |
| commit | fb9ae9e41eaf01b3651395fdd450ac1a4743e592 (patch) | |
| tree | 8fb29e9b62d40d6407f082f55a7164775154bf78 /test/012_io_AVX_write | |
| parent | 04c3ee1f5acac47650be8d0ffbf90e238df0d12b (diff) | |
| download | nissy-core-fb9ae9e41eaf01b3651395fdd450ac1a4743e592.tar.gz nissy-core-fb9ae9e41eaf01b3651395fdd450ac1a4743e592.zip | |
Big changes to the interface
Diffstat (limited to 'test/012_io_AVX_write')
| -rw-r--r-- | test/012_io_AVX_write/io_AVX_tests.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/012_io_AVX_write/io_AVX_tests.c b/test/012_io_AVX_write/io_AVX_tests.c index e2fa3e4..cbe6ef0 100644 --- a/test/012_io_AVX_write/io_AVX_tests.c +++ b/test/012_io_AVX_write/io_AVX_tests.c | |||
| @@ -17,14 +17,14 @@ int main() { | |||
| 17 | for (c = str; (*c = getchar()) != EOF; c++) ; | 17 | for (c = str; (*c = getchar()) != EOF; c++) ; |
| 18 | *c = '\0'; | 18 | *c = '\0'; |
| 19 | 19 | ||
| 20 | cube = readcube(H48, str); | 20 | cube = readcube("H48", str); |
| 21 | 21 | ||
| 22 | if (iserror(cube)) { | 22 | if (iserror(cube)) { |
| 23 | printf("Error reading cube\n"); | 23 | printf("Error reading cube\n"); |
| 24 | } else if (!issolvable(cube)) { | 24 | } else if (!issolvable(cube)) { |
| 25 | printf("Cube is not solvable\n"); | 25 | printf("Cube is not solvable\n"); |
| 26 | } else { | 26 | } else { |
| 27 | writecube(AVX, cube, str); | 27 | writecube("AVX", cube, str); |
| 28 | printf("%s\n", str); | 28 | printf("%s\n", str); |
| 29 | } | 29 | } |
| 30 | 30 | ||
