We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 190ab8c commit e7bee7aCopy full SHA for e7bee7a
_doc/articles/2024/2024-11-31-route2024.rst
@@ -193,6 +193,7 @@ Ensuite le voyageur de commerce.
193
optim = solution_permutations(villes)
194
print("-- optimisation gourmande:", distance(optim))
195
196
+ print()
197
print("-- optimisation plus rapide mais approchée...")
198
optim = solution_croisement(villes)
199
print("-- optimisation plus rapide mais approchée", distance(optim))
@@ -202,6 +203,7 @@ Ensuite le voyageur de commerce.
202
203
fig.savefig(os.path.join(__WD__, "tsp_simple.png"))
204
205
text = ".. image:: tsp_simple.png"
206
+ print("\n\n")
207
print(text)
208
209
Séance 7
0 commit comments