Skip to content

Commit

Permalink
fix(multi_object_tracker): fix knownConditionTrueFalse (autowarefound…
Browse files Browse the repository at this point in the history
…ation#7821)

* fix(multi_object_tracker): 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 7238701 commit b54d57d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,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;
}
// area gate
Expand Down

0 comments on commit b54d57d

Please sign in to comment.