| 1249 | } |
| 1250 | |
| 1251 | int LGBM_BoosterGetEvalCounts(BoosterHandle handle, int* out_len) { |
| 1252 | API_BEGIN(); |
| 1253 | Booster* ref_booster = reinterpret_cast<Booster*>(handle); |
| 1254 | *out_len = ref_booster->GetEvalCounts(); |
| 1255 | API_END(); |
| 1256 | } |
| 1257 | |
| 1258 | int LGBM_BoosterGetEvalNames(BoosterHandle handle, int* out_len, char** out_strs) { |
| 1259 | API_BEGIN(); |
no test coverage detected