| 1221 | } |
| 1222 | |
| 1223 | int LGBM_BoosterRollbackOneIter(BoosterHandle handle) { |
| 1224 | API_BEGIN(); |
| 1225 | Booster* ref_booster = reinterpret_cast<Booster*>(handle); |
| 1226 | ref_booster->RollbackOneIter(); |
| 1227 | API_END(); |
| 1228 | } |
| 1229 | |
| 1230 | int LGBM_BoosterGetCurrentIteration(BoosterHandle handle, int* out_iteration) { |
| 1231 | API_BEGIN(); |
no test coverage detected