Skip to content

Commit

Permalink
uncrustify.
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonDold committed Jan 18, 2024
1 parent 6f31334 commit 89f74f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search/evaluators/weighted_evaluator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ EvaluationResult WeightedEvaluator::compute_result(
EvaluationResult result;
int value = eval_context.get_evaluator_value_or_infinity(evaluator.get());
if (value != EvaluationResult::INFTY) {
assert (utils::is_product_within_limits(value,weight,numeric_limits<int>::min(),numeric_limits<int>::max()));
assert(utils::is_product_within_limits(value, weight, numeric_limits<int>::min(), numeric_limits<int>::max()));
value *= weight;
}
result.set_evaluator_value(value);
Expand Down

0 comments on commit 89f74f3

Please sign in to comment.