We currently use repeats = 1000, which can be extremely slow (half an hour or so) on a few examples (e.g. linear_search_list and uniqueList).
We should reduce those to a few min at most. (Personally, I wouldn’t make them too quick, though—that could easily give the impression that “well, it’s technically slower; but it doesn’t matter in practice because they’re both instant”. Making fast things feel fast and slow things feel slow can help drive home the point more effectively.)
Based on comment by @Robadob in #14 (comment)
We currently use
repeats = 1000, which can be extremely slow (half an hour or so) on a few examples (e.g.linear_search_listanduniqueList).We should reduce those to a few min at most. (Personally, I wouldn’t make them too quick, though—that could easily give the impression that “well, it’s technically slower; but it doesn’t matter in practice because they’re both instant”. Making fast things feel fast and slow things feel slow can help drive home the point more effectively.)
Based on comment by @Robadob in #14 (comment)