Definition at line 391 of file svm.cpp. References alpha, alpha_status, FREE, get_C(), LOWER_BOUND, and UPPER_BOUND. Referenced by Solve(). 00392 { 00393 if(alpha[i] >= get_C(i)) 00394 alpha_status[i] = UPPER_BOUND; 00395 else if(alpha[i] <= 0) 00396 alpha_status[i] = LOWER_BOUND; 00397 else alpha_status[i] = FREE; 00398 }
Here is the call graph for this function:
|