* @param COST cost variable
* @param CAUTOMATON a deterministic finite automaton defining the regular language and the costs
* Can be built with method CostAutomaton.makeSingleResource(...)
*/
public static Constraint cost_regular(IntVar[] VARS, IntVar COST, ICostAutomaton CAUTOMATON) {
return new CostRegular(VARS, COST, CAUTOMATON);
}