Current section

Files

Jump to
fixpoint lib solver constraints all_different all_different_bc.ex
Raw

lib/solver/constraints/all_different/all_different_bc.ex

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