#include <PartitionGenerator.h>
Classes | |
class | LessCollections |
Public Types | |
typedef std::vector< int > | Partition |
Public Member Functions | |
std::vector< Partition > | partitions (int collectionSize, int minCollectionSize=1) const |
std::vector< std::vector < Partition > > | sortedPartitions (int collectionSize, int minCollectionSize=1) const |
Class to compute the possible partitions of a collection of 'collectionSize' elements. A Partition is a list of subcollection sizes that add up to 'collectionSize', ordered in decreasing order of subcollection size. No subcollection size is less than 'minCollectionSize'.
Definition at line 13 of file PartitionGenerator.h.
typedef std::vector<int> PartitionGenerator::Partition |
Definition at line 17 of file PartitionGenerator.h.
vector< PartitionGenerator::Partition > PartitionGenerator::partitions | ( | int | collectionSize, |
int | minCollectionSize = 1 |
||
) | const |
Return partitions in a row.
Definition at line 8 of file PartitionGenerator.cc.
References filterCSVwithJSON::copy, plotBeamSpotDB::first, and edm::second().
Referenced by CombinationGenerator< T >::combinations().
vector< std::vector< PartitionGenerator::Partition > > PartitionGenerator::sortedPartitions | ( | int | collectionSize, |
int | minCollectionSize = 1 |
||
) | const |
Return partitions ordered according to the number of subcollections they have. 'sortedPartitions[N]' = list of partitions with N subcollections.
Definition at line 38 of file PartitionGenerator.cc.
References i, and python.multivaluedict::sort().
Referenced by CombinationGenerator< T >::combinations().