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);
}