| 1117 | } |
| 1118 | |
| 1119 | int LGBM_BoosterShuffleModels(BoosterHandle handle, int start_iter, int end_iter) { |
| 1120 | API_BEGIN(); |
| 1121 | Booster* ref_booster = reinterpret_cast<Booster*>(handle); |
| 1122 | ref_booster->ShuffleModels(start_iter, end_iter); |
| 1123 | API_END(); |
| 1124 | } |
| 1125 | |
| 1126 | int LGBM_BoosterMerge(BoosterHandle handle, |
| 1127 | BoosterHandle other_handle) { |
nothing calls this directly
no test coverage detected