Skip to content

Improve loop algorithms crosschecking for experiment

Samuel GAIST requested to merge improve_loop_algorithm_crosscheck into master

The current technique use had a flaw. With algorithm containing a different number of groups, it would truncate the to the shortest as explained in the zip function documentation.

Now itertools.zip_longest is used to ensure that the iteration is done on the longest input.

Merge request reports