Package de.timefinder.algo.graph

Examples of de.timefinder.algo.graph.GraphAlgorithmGPA


    private final int slotsPerWeek;
    private AbstractGraphAlgorithm algo;

    public NCPEventTSGraph(int slotsPerDay, int days) {
        this.slotsPerWeek = slotsPerDay * days;
        algo = new GraphAlgorithmGPA(slotsPerWeek);
//        algo = new GraphAlgorithmGreedy(slotsPerWeek);

    }
View Full Code Here

TOP

Related Classes of de.timefinder.algo.graph.GraphAlgorithmGPA

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.