nicofarr / bcbp

Balanced Complete Block Partitioning Algorithm - from Allan, Müllensiefen and Wiggins, ISMIR 2007
MIT License
0 stars 0 forks source link

Replace Probstat by a supported python package #2

Open nicofarr opened 7 years ago

nicofarr commented 7 years ago

ProbStat http://probstat.sourceforge.net/ is an old python package. It would be good to replace it by something that is currently maintained, or at least on pip.

Any suggestions ?

hatfinch commented 7 years ago

Probstat is only used for its Combination and Permutation classes. It looks as though itertools.permutations() and itertools.combinations() in the standard library should be able to provide similar functionality.