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
This commit is contained in:
Robert Gerstenberger 2024-12-11 11:46:42 +01:00 committed by GitHub
parent a939a4577c
commit 363421c61c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -560,7 +560,7 @@ def got() -> operations.GraphOfOperations:
""" """
operations_graph = operations.GraphOfOperations() operations_graph = operations.GraphOfOperations()
plans = operations.Generate(2, 1) plans = operations.Generate(1, 1)
operations_graph.append_operation(plans) # generate the sublists operations_graph.append_operation(plans) # generate the sublists
for i in range(1, 3): for i in range(1, 3):
list_id = f"List {i}" list_id = f"List {i}"