We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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:
Which always succeeds since NNJPDA_LABELED will evaluate to true. The lines should read:
The lines in question are: 220, 235, 252 and 275
The text was updated successfully, but these errors were encountered: