From 1ce02bf32c8fd832647b7a020ebb2a5af9c8a636 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffan=20S=C3=B8lvsten?= Date: Fri, 17 Nov 2023 17:17:44 -0500 Subject: [PATCH] Update Knight's Tour system test for newer interface The new interface takes two integers: rows and columns. If only one is given, then it is assumed the board is square. Hence, the numbers here should be decreased. --- .github/workflows/system_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/system_test.yml b/.github/workflows/system_test.yml index 8e36917b7..be5640faf 100644 --- a/.github/workflows/system_test.yml +++ b/.github/workflows/system_test.yml @@ -43,7 +43,7 @@ jobs: include: - name: 'Knights Tour (ZDD)' exec: adiar_knights_tour_zdd - N: '8 9 10 11' + N: '3 4 5 6' - name: 'Queens (BDD)' exec: adiar_queens_bdd