Fix alignment of constructor parameters

This commit is contained in:
Abhinav Moudgil
2017-03-28 10:46:18 +05:30
parent 18a5b15203
commit f7949d940c
@@ -21,12 +21,12 @@ namespace optimization {
template<typename DecomposableFunctionType>
AdaDelta<DecomposableFunctionType>::AdaDelta(DecomposableFunctionType& function,
const double stepSize,
const double rho,
const double epsilon,
const size_t maxIterations,
const double tolerance,
const bool shuffle) :
const double stepSize,
const double rho,
const double epsilon,
const size_t maxIterations,
const double tolerance,
const bool shuffle) :
optimizer(function,
stepSize,
maxIterations,