11 #ifndef GRAPHALGORITHMS_HPP
12 #define GRAPHALGORITHMS_HPP
31 mgx_EXPORT
void matrixInverseGSL(std::vector<std::vector<double> >& inputM, std::vector<std::vector<double> >& outputM);
32 mgx_EXPORT
void systemSolveGSL(std::vector<std::vector<double> >& inputM, std::vector<double>& x);
38 mgx_EXPORT
bool calcBetweenness(
cellGraph &C, std::map<IntInt, double>& weights, std::map<cell, double>& cellBetweenessMap);
43 mgx_EXPORT std::map<IntInt, double>
generateWeights(std::map<IntInt, double> neighborMap,
bool constWeight);