From b998607bf5cd2f148a523633ab2ca47c4cbc7824 Mon Sep 17 00:00:00 2001 From: Konstantin Sidorov Date: Wed, 7 Jun 2017 12:07:52 +0400 Subject: [PATCH] Fixed Jenkins issue with closing brace --- src/mlpack/methods/ann/augmented/tasks/add_impl.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/mlpack/methods/ann/augmented/tasks/add_impl.hpp b/src/mlpack/methods/ann/augmented/tasks/add_impl.hpp index 0d37086ed5..bdf2f1a018 100644 --- a/src/mlpack/methods/ann/augmented/tasks/add_impl.hpp +++ b/src/mlpack/methods/ann/augmented/tasks/add_impl.hpp @@ -48,8 +48,7 @@ void AddTask::GenerateData(arma::field& input, // (binary number with size_A bits) + '+' // + (binary number with size_B bits) input(i) = arma::randi( - size_A + size_B + 1, arma::distr_param(0, 1) - ); + size_A + size_B + 1, arma::distr_param(0, 1)); input(i).at(size_A) = +100; int val_A = 0; for (size_t k = 0; k < size_A; ++k) {