1
0
mirror of https://github.com/DanilaFe/abacus synced 2024-09-06 07:43:12 -07:00

Fix initial array index in the product function.

This commit is contained in:
Arthur Drobot 2017-07-25 14:08:46 -07:00
parent 4962aae083
commit 46da95e7b5

View File

@ -43,7 +43,7 @@ public class FunctionDatabase {
@Override @Override
protected NumberInterface applyInternal(NumberInterface[] params) { protected NumberInterface applyInternal(NumberInterface[] params) {
NumberInterface product = params[1]; NumberInterface product = params[0];
for(int i = 1; i < params.length; i++){ for(int i = 1; i < params.length; i++){
product = product.multiply(params[i]); product = product.multiply(params[i]);
} }