Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Labelled data associations always used #20

Open
SeanTasker opened this issue Mar 5, 2018 · 0 comments
Open

Labelled data associations always used #20

SeanTasker opened this issue Mar 5, 2018 · 0 comments

Comments

@SeanTasker
Copy link
Contributor

SeanTasker commented Mar 5, 2018

I noticed an issue where the labels on observations were always used regardless of the whether a labelled association type was used.

The problem is due to an error in condition logic which is present four times in multitracker.h. The condition is written as:

if (alg == NNJPDA || NNJPDA_LABELED)

Which always succeeds since NNJPDA_LABELED will evaluate to true. The lines should read:

if (alg == NNJPDA || alg == NNJPDA_LABELED) 

The lines in question are: 220, 235, 252 and 275

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant