Analyzer.VertexMetricCalculatorBase.tryAnalyze C# (CSharp) Method

tryAnalyze() public method

public tryAnalyze ( IGraph graph, BackgroundWorker bgw, AnalyzeResultBase &results ) : bool
graph IGraph
bgw System.ComponentModel.BackgroundWorker
results AnalyzeResultBase
return bool
        public override bool tryAnalyze(IGraph graph, BackgroundWorker bgw, out AnalyzeResultBase results)
        {
            VertexMetricBase oVertexMetricBase;
            bool rv = tryCalculate(graph, bgw, out oVertexMetricBase);
            results = oVertexMetricBase;
            return rv;
        }