/** * \file random_generator.h \brief random number generator * * Copyright 2007-2013 IMP Inventors. All rights reserved. * */ #ifndef IMPSTATISTICS_INTERNAL_CENTRALITY_CLUSTERING_H #define IMPSTATISTICS_INTERNAL_CENTRALITY_CLUSTERING_H #include "IMP/random.h" #include #include #include IMPSTATISTICS_BEGIN_NAMESPACE class PartitionalClustering; IMPSTATISTICS_END_NAMESPACE IMPSTATISTICS_BEGIN_INTERNAL_NAMESPACE /*struct centrality_t { typedef boost::edge_property_tag kind; } centrality;*/ typedef boost::adjacency_matrix > > CentralityGraph; /*typedef boost::adjacency_list > Graph;*/ typedef boost::graph_traits CentralityTraits; IMPSTATISTICSEXPORT PartitionalClustering *get_centrality_clustering(CentralityGraph &g, unsigned int k); IMPSTATISTICS_END_INTERNAL_NAMESPACE #endif /* IMPSTATISTICS_INTERNAL_CENTRALITY_CLUSTERING_H */