Skip to content

Commit

Permalink
uncrustify
Browse files Browse the repository at this point in the history
  • Loading branch information
salome-eriksson committed Jul 5, 2024
1 parent ad93a1b commit a9e4833
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/search/tasks/default_value_axioms_task.cc
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ DefaultValueAxiomsTask::DefaultValueAxiomsTask(
FactPair(var, default_value), vector<FactPair>());
} else {
add_default_value_axioms_for_var(
FactPair(var, default_value), axiom_ids);
FactPair(var, default_value), axiom_ids);
}
}
}
Expand Down Expand Up @@ -248,9 +248,9 @@ void DefaultValueAxiomsTask::add_default_value_axioms_for_var(


void DefaultValueAxiomsTask::collect_non_dominated_hitting_sets_recursively(
const vector<set<FactPair>> &set_of_sets, size_t index,
set<FactPair> &hitting_set, unordered_set<int> &hitting_set_vars,
set<set<FactPair>> &results) {
const vector<set<FactPair>> &set_of_sets, size_t index,
set<FactPair> &hitting_set, unordered_set<int> &hitting_set_vars,
set<set<FactPair>> &results) {
if (index == set_of_sets.size()) {
/*
Check whether the hitting set is dominated.
Expand Down Expand Up @@ -282,8 +282,8 @@ void DefaultValueAxiomsTask::collect_non_dominated_hitting_sets_recursively(
*/
if (hitting_set.find(elem) != hitting_set.end()) {
collect_non_dominated_hitting_sets_recursively(
set_of_sets, index + 1, hitting_set, hitting_set_vars,
results);
set_of_sets, index + 1, hitting_set, hitting_set_vars,
results);
return;
}
}
Expand All @@ -297,8 +297,8 @@ void DefaultValueAxiomsTask::collect_non_dominated_hitting_sets_recursively(
hitting_set.insert(elem);
hitting_set_vars.insert(elem.var);
collect_non_dominated_hitting_sets_recursively(
set_of_sets, index + 1, hitting_set, hitting_set_vars,
results);
set_of_sets, index + 1, hitting_set, hitting_set_vars,
results);
hitting_set.erase(elem);
hitting_set_vars.erase(elem.var);
}
Expand Down

0 comments on commit a9e4833

Please sign in to comment.