From 363421c61c7bc11edf32845a697ae2aaccd75463 Mon Sep 17 00:00:00 2001 From: Robert Gerstenberger <47847858+rgersten@users.noreply.github.com> Date: Wed, 11 Dec 2024 11:46:42 +0100 Subject: [PATCH] fix minor mistake without impact (#36) fix mistake in the sorting example for 32 elements, which has no impact, since the respective parameter is not used in the implementation of the generation prompt reported in issue #35 --- examples/sorting/sorting_032.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/sorting/sorting_032.py b/examples/sorting/sorting_032.py index 0aedc94..90c0c1a 100644 --- a/examples/sorting/sorting_032.py +++ b/examples/sorting/sorting_032.py @@ -560,7 +560,7 @@ def got() -> operations.GraphOfOperations: """ operations_graph = operations.GraphOfOperations() - plans = operations.Generate(2, 1) + plans = operations.Generate(1, 1) operations_graph.append_operation(plans) # generate the sublists for i in range(1, 3): list_id = f"List {i}"