Current section

Files

Jump to
fixpoint lib solver search strategy value indomain_random.ex
Raw

lib/solver/search/strategy/value/indomain_random.ex

defmodule CPSolver.Search.ValueSelector.Random do
@behaviour CPSolver.Search.ValueSelector
import CPSolver.Utils
@impl true
def select_value(variable) do
variable
|> domain_values()
|> Enum.random()
end
end