| 1256 | } |
| 1257 | |
| 1258 | int LGBM_BoosterGetEvalNames(BoosterHandle handle, int* out_len, char** out_strs) { |
| 1259 | API_BEGIN(); |
| 1260 | Booster* ref_booster = reinterpret_cast<Booster*>(handle); |
| 1261 | *out_len = ref_booster->GetEvalNames(out_strs); |
| 1262 | API_END(); |
| 1263 | } |
| 1264 | |
| 1265 | int LGBM_BoosterGetFeatureNames(BoosterHandle handle, int* out_len, char** out_strs) { |
| 1266 | API_BEGIN(); |
no test coverage detected