Skip to content

Commit

Permalink
fix(object_merger): fix knownConditionTrueFalse (#7822)
Browse files Browse the repository at this point in the history
* fix(object_merger): fix knownConditionTrueFalse

Signed-off-by: Ryuta Kambe <ryuta.kambe@tier4.jp>

* style(pre-commit): autofix

---------

Signed-off-by: Ryuta Kambe <ryuta.kambe@tier4.jp>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
veqcc and pre-commit-ci[bot] authored Jul 4, 2024
1 parent 3884650 commit 83bece1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ Eigen::MatrixXd DataAssociation::calcScoreMatrix(

bool passed_gate = true;
// dist gate
if (passed_gate) {
{ // passed_gate is always true
if (max_dist < dist) passed_gate = false;
}
// angle gate
Expand Down

0 comments on commit 83bece1

Please sign in to comment.