| 30 | typename U |
| 31 | > |
| 32 | inline bool is_learning_problem_impl ( |
| 33 | const T& x, |
| 34 | const U& x_labels |
| 35 | ) |
| 36 | { |
| 37 | return is_col_vector(x) && |
| 38 | is_col_vector(x_labels) && |
| 39 | x.size() == x_labels.size() && |
| 40 | x.size() > 0; |
| 41 | } |
| 42 | |
| 43 | template < |
| 44 | typename T, |
no test coverage detected