Current section

Files

Jump to
fixpoint lib solver constraints all_different all_different_dc.ex
Raw

lib/solver/constraints/all_different/all_different_dc.ex

defmodule CPSolver.Constraint.AllDifferent.DC do
use CPSolver.Constraint
alias CPSolver.Propagator.AllDifferent.DC, as: Propagator
@impl true
def propagators(x) do
[Propagator.new(x)]
end
end