Closed estringana closed 7 years ago
Looking at the solution proposed, the following mistake was spotted
soln = hover(p) cost = cost_fun(soln) best_cost = cost if cost < best_cost:
That condition will be never evaluated to true. However, the solution still works
You are absolutely right. Thanks very much for reporting! Should be fixed now.
Looking at the solution proposed, the following mistake was spotted
That condition will be never evaluated to true. However, the solution still works