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/04_compose/compose_tests.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/04_compose/compose_tests.c') diff --git a/test/04_compose/compose_tests.c b/test/04_compose/compose_tests.c index ae34f6d..575c2c9 100644 --- a/test/04_compose/compose_tests.c +++ b/test/04_compose/compose_tests.c @@ -19,8 +19,8 @@ int main() { if (iserror(c3)) { printf("Error composing cubes\n"); - } else if (!isconsistent(c3)) { - printf("Composed cube is inconsistent\n"); + } else if (!issolvable(c3)) { + printf("Composed cube is not solvable\n"); } else { writecube(c3, str); printf("%s\n", str); -- cgit v1.3