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
Calling GetPrediction() multiple times on the same Analyzer instance will get different results, as "I" and "invI" are not reset.
I would suggest adding:
public float GetPrediction(Entry item, Index first, Index second) { invI = I = 0; // <--- Reset I and invI ... }
The text was updated successfully, but these errors were encountered:
Good point, the analyzer should definitely be reusable ... I'll work on this soon, unless you want to send me a pull request :)
Sorry, something went wrong.
joelmartinez
No branches or pull requests
Calling GetPrediction() multiple times on the same Analyzer instance will get different results, as "I" and "invI" are not reset.
I would suggest adding:
public float GetPrediction(Entry item, Index first, Index second)
{
invI = I = 0; // <--- Reset I and invI
...
}
The text was updated successfully, but these errors were encountered: