public static double GetInfluenceFor(this Graph graph, int vertice)
        {
            var calculator = new DegreeCentrality(graph);

            return(calculator.GetVerticeOutdegreeCentrality(vertice));
        }
        public static double GetPrestigeFor(this Graph graph, int vertice)
        {
            var calculator = new DegreeCentrality(graph);

            return(calculator.GetVerticeIndegreeCentrality(vertice));
        }
        public static double GetDensity(this Graph graph)
        {
            var calculator = new DegreeCentrality(graph);

            return(calculator.Density());
        }
        public static double GetOutdegreesStandartDeviation(this Graph graph)
        {
            var calculator = new DegreeCentrality(graph);

            return(calculator.GetOutdegreeStandartDeviation());
        }
        public static double GetGraphInfluence(this Graph graph)
        {
            var calculator = new DegreeCentrality(graph);

            return(calculator.GetGraphOutdegreeCentrality());
        }
        public static double GetGraphPrestige(this Graph graph)
        {
            var calculator = new DegreeCentrality(graph);

            return(calculator.GetGraphIndegreeCentrality());
        }