ash/lib/sat_solver.ex

482 lines
14 KiB
Elixir
Raw Normal View History

2020-05-30 19:29:27 +12:00
defmodule Ash.SatSolver do
2020-06-02 17:47:25 +12:00
@moduledoc false
2020-05-30 19:29:27 +12:00
alias Ash.Filter
alias Ash.Filter.{Expression, Not, Predicate}
2020-05-30 19:29:27 +12:00
def strict_filter_subset(filter, candidate) do
case {filter, candidate} do
{%{expression: nil}, %{expression: nil}} ->
true
{%{expression: nil}, _candidate_expr} ->
true
2020-05-30 19:29:27 +12:00
{_filter_expr, %{expression: nil}} ->
false
2020-05-30 19:29:27 +12:00
{filter, candidate} ->
do_strict_filter_subset(filter, candidate)
end
end
2020-05-30 19:29:27 +12:00
defp do_strict_filter_subset(filter, candidate) do
case transform_and_solve(
filter.resource,
Expression.new(:and, filter.expression, candidate.expression)
) do
2020-05-30 19:29:27 +12:00
{:error, :unsatisfiable} ->
false
{:ok, _} ->
case transform_and_solve(
filter.resource,
Expression.new(:and, Not.new(filter.expression), candidate.expression)
) do
2020-05-30 19:29:27 +12:00
{:error, :unsatisfiable} ->
true
_ ->
:maybe
end
end
end
defp filter_to_expr(nil), do: nil
defp filter_to_expr(false), do: false
defp filter_to_expr(true), do: true
defp filter_to_expr(%Filter{expression: expression}), do: filter_to_expr(expression)
defp filter_to_expr(%Predicate{} = predicate), do: predicate
defp filter_to_expr(%Not{expression: expression}), do: {:not, filter_to_expr(expression)}
defp filter_to_expr(%Expression{op: op, left: left, right: right}) do
{op, filter_to_expr(left), filter_to_expr(right)}
end
2020-05-30 19:29:27 +12:00
def transform_and_solve(resource, expression) do
expression
|> consolidate_relationships(resource)
|> upgrade_related_filters_to_join_keys(resource)
|> build_expr_with_predicate_information()
|> solve_expression()
end
defp upgrade_related_filters_to_join_keys(expression, resource) do
Filter.map(expression, &upgrade_predicate(&1, resource))
end
defp upgrade_predicate(%Predicate{relationship_path: path} = predicate, resource)
when path != [] do
with relationship when not is_nil(relationship) <- Ash.Resource.relationship(resource, path),
true <- predicate.attribute.name == relationship.destination_field,
new_attribute when not is_nil(new_attribute) <-
Ash.Resource.attribute(relationship.source, relationship.source_field),
{:ok, new_predicate} <-
Predicate.new(
resource,
new_attribute,
predicate.predicate.__struct__,
predicate.value,
:lists.droplast(path)
) do
upgrade_predicate(new_predicate, resource)
else
_ ->
predicate
end
end
defp upgrade_predicate(other, _), do: other
defp consolidate_relationships(expression, resource) do
{replacements, _all_relationship_paths} =
expression
|> Filter.relationship_paths()
|> Enum.reduce({%{}, []}, fn path, {replacements, kept_paths} ->
case find_synonymous_relationship_path(resource, kept_paths, path) do
nil ->
{replacements, [path | kept_paths]}
synonymous_path ->
Map.put(replacements, path, synonymous_path)
end
end)
Filter.map(expression, fn
%Predicate{relationship_path: path} = predicate when path != [] ->
case Map.fetch(replacements, path) do
:error -> predicate
{:ok, replacement} -> %{predicate | relationship_path: replacement}
end
other ->
other
end)
end
defp find_synonymous_relationship_path(resource, paths, path) do
Enum.find_value(paths, fn candidate_path ->
if synonymous_relationship_paths?(resource, candidate_path, path) do
candidate_path
else
false
end
end)
end
2020-07-23 17:09:59 +12:00
def synonymous_relationship_paths?(_, [], []), do: true
2020-07-23 17:09:59 +12:00
def synonymous_relationship_paths?(_resource, candidate_path, path)
when length(candidate_path) != length(path),
do: false
2020-07-23 17:09:59 +12:00
def synonymous_relationship_paths?(resource, [candidate_first | candidate_rest], [first | rest])
when first == candidate_first do
synonymous_relationship_paths?(
Ash.Resource.relationship(resource, candidate_first).destination,
candidate_rest,
rest
)
end
2020-07-23 17:09:59 +12:00
def synonymous_relationship_paths?(
left_resource,
candidate,
search,
right_resource \\ nil
)
def synonymous_relationship_paths?(_, [], [], _), do: true
def synonymous_relationship_paths?(_, [], _, _), do: false
def synonymous_relationship_paths?(_, _, [], _), do: false
def synonymous_relationship_paths?(
left_resource,
2020-07-23 17:09:59 +12:00
[candidate_first | candidate_rest] = candidate,
[first | rest] = search,
right_resource
2020-07-23 17:09:59 +12:00
) do
right_resource = right_resource || left_resource
relationship = Ash.Resource.relationship(left_resource, first)
candidate_relationship = Ash.Resource.relationship(right_resource, candidate_first)
2020-07-23 17:09:59 +12:00
cond do
!relationship || !candidate_relationship ->
false
2020-07-23 17:09:59 +12:00
relationship.type == :many_to_many && candidate_relationship.type == :has_many ->
synonymous_relationship_paths?(
left_resource,
2020-07-23 17:09:59 +12:00
[relationship.join_relationship | candidate],
search,
right_resource
2020-07-23 17:09:59 +12:00
)
relationship.type == :has_many && candidate_relationship.type == :many_to_many ->
synonymous_relationship_paths?(
left_resource,
2020-07-23 17:09:59 +12:00
candidate,
[candidate_relationship.join_relationship | search],
right_resource
2020-07-23 17:09:59 +12:00
)
true ->
comparison_keys = [
:source_field,
:destination_field,
:source_field_on_join_table,
:destination_field_on_join_table,
:destination_field,
:destination
]
Map.take(relationship, comparison_keys) ==
Map.take(candidate_relationship, comparison_keys) and
synonymous_relationship_paths?(relationship.destination, candidate_rest, rest)
end
end
defp build_expr_with_predicate_information(expression) do
all_predicates =
Filter.reduce(expression, [], fn
%Predicate{} = predicate, predicates ->
[predicate | predicates]
2020-05-30 19:29:27 +12:00
_, predicates ->
predicates
2020-05-30 19:29:27 +12:00
end)
simplified =
Filter.map(expression, fn
%Predicate{} = predicate ->
predicate
|> find_simplification(all_predicates)
|> case do
nil ->
predicate
{:simplify, simplification} ->
simplification
end
other ->
other
end)
2020-05-30 19:29:27 +12:00
if simplified == expression do
all_predicates =
Filter.reduce(expression, [], fn
%Predicate{} = predicate, predicates ->
[predicate | predicates]
_, predicates ->
predicates
end)
|> Enum.uniq()
comparison_expressions =
all_predicates
|> Enum.reduce([], fn predicate, new_expressions ->
all_predicates
|> Enum.filter(fn other_predicate ->
other_predicate != predicate &&
other_predicate.relationship_path == predicate.relationship_path &&
other_predicate.attribute.name == predicate.attribute.name
end)
|> Enum.reduce(new_expressions, fn other_predicate, new_expressions ->
case Predicate.compare(predicate, other_predicate) do
inclusive when inclusive in [:right_includes_left, :mutually_inclusive] ->
[{:not, {:and, {:not, other_predicate}, predicate}} | new_expressions]
exclusive when exclusive in [:right_excludes_left, :mutually_exclusive] ->
[{:not, {:and, other_predicate, predicate}} | new_expressions]
{:simplify, _} ->
# Filter should be fully simplified here
raise "What"
_other ->
# If we can't tell, we assume they are exclusive statements
[{:not, {:and, other_predicate, predicate}} | new_expressions]
end
end)
end)
|> Enum.uniq()
expression = filter_to_expr(expression)
Enum.reduce(comparison_expressions, expression, fn comparison_expression, expression ->
{:and, comparison_expression, expression}
end)
else
build_expr_with_predicate_information(simplified)
end
2020-05-30 19:29:27 +12:00
end
defp find_simplification(predicate, predicates) do
predicates
|> Enum.find_value(fn other_predicate ->
case Predicate.compare(predicate, other_predicate) do
{:simplify, simplification} -> {:simplify, simplification}
_ -> false
end
end)
2020-05-30 19:29:27 +12:00
end
2020-06-03 10:24:09 +12:00
def solve_expression(expression) do
2020-05-30 19:29:27 +12:00
expression_with_constants = {:and, true, {:and, {:not, false}, expression}}
{bindings, expression} = extract_bindings(expression_with_constants)
expression
|> to_conjunctive_normal_form()
|> lift_clauses()
|> negations_to_negative_numbers()
2020-06-02 15:23:33 +12:00
|> Picosat.solve()
2020-05-30 19:29:27 +12:00
|> solutions_to_predicate_values(bindings)
end
defp solutions_to_predicate_values({:ok, solution}, bindings) do
scenario =
Enum.reduce(solution, %{true: [], false: []}, fn var, state ->
fact = Map.get(bindings, abs(var))
Map.put(state, fact, var > 0)
end)
{:ok, scenario}
end
defp solutions_to_predicate_values({:error, error}, _), do: {:error, error}
defp extract_bindings(expr, bindings \\ %{current: 1})
defp extract_bindings({operator, left, right}, bindings) do
{bindings, left_extracted} = extract_bindings(left, bindings)
{bindings, right_extracted} = extract_bindings(right, bindings)
{bindings, {operator, left_extracted, right_extracted}}
end
defp extract_bindings({:not, value}, bindings) do
{bindings, extracted} = extract_bindings(value, bindings)
{bindings, {:not, extracted}}
end
defp extract_bindings(value, %{current: current} = bindings) do
current_binding =
Enum.find(bindings, fn {key, binding_value} ->
key != :current && binding_value == value
end)
case current_binding do
nil ->
new_bindings =
bindings
|> Map.put(:current, current + 1)
|> Map.put(current, value)
{new_bindings, current}
{binding, _} ->
{bindings, binding}
end
end
# A helper function for formatting to the same output we'd give to picosat
@doc false
def to_picosat(clauses, variable_count) do
clause_count = Enum.count(clauses)
formatted_input =
Enum.map_join(clauses, "\n", fn clause ->
format_clause(clause) <> " 0"
end)
"p cnf #{variable_count} #{clause_count}\n" <> formatted_input
end
defp negations_to_negative_numbers(clauses) do
Enum.map(
clauses,
fn
{:not, var} when is_integer(var) ->
[negate_var(var)]
var when is_integer(var) ->
[var]
clause ->
Enum.map(clause, fn
{:not, var} -> negate_var(var)
var -> var
end)
end
)
end
defp negate_var(var, multiplier \\ -1)
defp negate_var({:not, value}, multiplier) do
negate_var(value, multiplier * -1)
end
defp negate_var(value, multiplier), do: value * multiplier
defp format_clause(clause) do
Enum.map_join(clause, " ", fn
{:not, var} -> "-#{var}"
var -> "#{var}"
end)
end
defp lift_clauses({:and, left, right}) do
lift_clauses(left) ++ lift_clauses(right)
end
defp lift_clauses({:or, left, right}) do
[lift_or_clauses(left) ++ lift_or_clauses(right)]
end
defp lift_clauses(value), do: [[value]]
defp lift_or_clauses({:or, left, right}) do
lift_or_clauses(left) ++ lift_or_clauses(right)
end
defp lift_or_clauses(value), do: [value]
defp to_conjunctive_normal_form(expression) do
expression
|> demorgans_law()
|> distributive_law()
end
defp distributive_law(expression) do
distributive_law_applied = apply_distributive_law(expression)
if expression == distributive_law_applied do
expression
else
distributive_law(distributive_law_applied)
end
end
defp apply_distributive_law({:or, left, {:and, right1, right2}}) do
left_distributed = apply_distributive_law(left)
{:and, {:or, left_distributed, apply_distributive_law(right1)},
{:or, left_distributed, apply_distributive_law(right2)}}
end
defp apply_distributive_law({:or, {:and, left1, left2}, right}) do
right_distributed = apply_distributive_law(right)
{:and, {:or, apply_distributive_law(left1), right_distributed},
{:or, apply_distributive_law(left2), right_distributed}}
end
defp apply_distributive_law({:not, expression}) do
{:not, apply_distributive_law(expression)}
end
defp apply_distributive_law({operator, left, right}) when operator in [:and, :or] do
{operator, apply_distributive_law(left), apply_distributive_law(right)}
end
defp apply_distributive_law(var) when is_integer(var) do
var
end
defp demorgans_law(expression) do
demorgans_law_applied = apply_demorgans_law(expression)
if expression == demorgans_law_applied do
expression
else
demorgans_law(demorgans_law_applied)
end
end
defp apply_demorgans_law({:not, {:and, left, right}}) do
{:or, {:not, apply_demorgans_law(left)}, {:not, apply_demorgans_law(right)}}
end
defp apply_demorgans_law({:not, {:or, left, right}}) do
{:and, {:not, left}, {:not, right}}
end
defp apply_demorgans_law({operator, left, right}) when operator in [:or, :and] do
{operator, apply_demorgans_law(left), apply_demorgans_law(right)}
end
defp apply_demorgans_law({:not, expression}) do
{:not, apply_demorgans_law(expression)}
end
defp apply_demorgans_law(var) when is_integer(var) do
var
end
end