Package ptolemy.graph.analysis.analyzer

Examples of ptolemy.graph.analysis.analyzer.CycleMeanAnalyzer


     *  further transformation on the delay graph or the edgeLength, such as
     *  making the edge costs negative in order to compute the minimum cycle
     *  mean.
     */
    private double _computeMCM(DirectedGraph graph, ToDoubleMapping edgeLength) {
        CycleMeanAnalyzer cycleMean = new KarpCycleMeanStrategy(graph,
                edgeLength);
        double result = cycleMean.maximumCycleMean();
        _delayCycle = cycleMean.cycle();
        return result;
    }
View Full Code Here

TOP

Related Classes of ptolemy.graph.analysis.analyzer.CycleMeanAnalyzer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.