http://www.perlmonks.org?node_id=557395


in reply to Re^5: Finding all Combinations
in thread Finding all Combinations

roboticus,
That's not in the bug in the sense that it results in incorrect behavior. Minor quibble aside - you are right that it does not belong. It's left over from a previous revisions. The original version I had was much closer to blokhead's code which does not precalulate stop values and ends up spinning cycles doing math every iteration. Next I reversed the array so the index could be used to determine stop value with less math. This was unfortunate because I still had to do some math and reverse the return. Finally, I realized I could precalulate the stop values but didn't do a good job of cleaning up my false starts.

Thanks for the analysis - glad to have been some help.

Cheers - L~R