Analyzer.VertexDegreeCalculator.tryCalculate C# (CSharp) Method

tryCalculate() public method

public tryCalculate ( IGraph graph, BackgroundWorker bgw, VertexMetricBase &metrics ) : bool
graph IGraph
bgw System.ComponentModel.BackgroundWorker
metrics VertexMetricBase
return bool
        public override bool tryCalculate(IGraph graph, BackgroundWorker bgw, out VertexMetricBase metrics)
        {
            VertexMetricBase oMetrics;
            bool rv = TryCalculateGraphMetrics(graph, bgw, out oMetrics);
            metrics = oMetrics;
            return rv;
        }