| 96 | } |
| 97 | |
| 98 | const kernel_type get_kernel ( |
| 99 | ) const |
| 100 | { |
| 101 | // make sure requires clause is not broken |
| 102 | DLIB_ASSERT(out_vector_size() > 0, |
| 103 | "\tconst kernel_type empirical_kernel_map::get_kernel()" |
| 104 | << "\n\t You have to load this object with a kernel before you can call this function" |
| 105 | << "\n\t this: " << this |
| 106 | ); |
| 107 | |
| 108 | return kernel; |
| 109 | } |
| 110 | |
| 111 | long out_vector_size ( |
| 112 | ) const |
no outgoing calls
no test coverage detected