Commit cf1939fc authored by Davis King's avatar Davis King

Initialized best_gamma to avoid a warning from gcc.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403468
parent 2851ae5c
......@@ -177,7 +177,7 @@ int main()
cout << "Doing a grid search" << endl;
matrix<double> best_result(2,1);
best_result = 0;
double best_gamma, best_nu;
double best_gamma = 0.1, best_nu;
for (long col = 0; col < params.nc(); ++col)
{
// pull out the current set of model parameters
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment