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
Hi all,
I think there is a problem with the evaluate() method in relations.objects.LinearCombination. This line seems fishy if the condition is true:
relations.objects.LinearCombination
final FieldT value = index == 0 ? one : input.get((int) index).mul(terms.get(i).value());
If index == 0, we want to add the constant value of the linear combination, which should be terms.get(i).value(), not one.
index == 0
terms.get(i).value()
one
The text was updated successfully, but these errors were encountered:
Merge pull request scipr-lab#11 from gnosis/dockerfile
71b003c
Include Docker File and update readme for docker build guide.
No branches or pull requests
Hi all,
I think there is a problem with the evaluate() method in
relations.objects.LinearCombination
.This line seems fishy if the condition is true:
If
index == 0
, we want to add the constant value of the linear combination, which should beterms.get(i).value()
, notone
.The text was updated successfully, but these errors were encountered: