Fix warning.

This commit is contained in:
Ryan Curtin
2017-10-05 17:54:00 -04:00
parent 2aac157e3e
commit a1db8d012e
@@ -52,7 +52,7 @@ double SGDTestFunction::Evaluate(const arma::mat& coordinates,
{
double objective = 0;
for (int i = begin; i < begin + batchSize; i++)
for (size_t i = begin; i < begin + batchSize; i++)
{
switch (visitationOrder(i))
{