From ffb67c9dcd22c4c3258b9ef78301e404e7d9a796 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Thu, 5 Oct 2023 15:28:45 +0200 Subject: Split isconsistent() and issolvable() --- test/02_move/move_tests.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/02_move') diff --git a/test/02_move/move_tests.c b/test/02_move/move_tests.c index ac25de3..333c8ee 100644 --- a/test/02_move/move_tests.c +++ b/test/02_move/move_tests.c @@ -29,8 +29,8 @@ int main() { if (iserror(cube)) { printf("Error moving cube\n"); - } else if (!isconsistent(cube)) { - printf("Moved cube is inconsistent\n"); + } else if (!issolvable(cube)) { + printf("Moved cube is not solvable\n"); } else { writecube(cube, str); printf("%s\n", str); -- cgit v1.3