* @param filters filtering algorithm to use
*/
public PropGraphCumulative(IntVar[] s, IntVar[] d, IntVar[] e, IntVar[] h, IntVar capa,
boolean fast, Cumulative.Filter... filters) {
super(s, d, e, h, capa,true,fast, filters);
this.g = new UndirectedGraph(n, SetType.BITSET, true);
this.tasks = SetFactory.makeSwap(n,false);
this.toCompute = SetFactory.makeSwap(n, false);
}