| 590 | } |
| 591 | |
| 592 | LGBM_SE LGBM_BoosterSaveModel_R(LGBM_SE handle, |
| 593 | LGBM_SE num_iteration, |
| 594 | LGBM_SE filename, |
| 595 | LGBM_SE call_state) { |
| 596 | R_API_BEGIN(); |
| 597 | CHECK_CALL(LGBM_BoosterSaveModel(R_GET_PTR(handle), 0, R_AS_INT(num_iteration), R_CHAR_PTR(filename))); |
| 598 | R_API_END(); |
| 599 | } |
| 600 | |
| 601 | LGBM_SE LGBM_BoosterSaveModelToString_R(LGBM_SE handle, |
| 602 | LGBM_SE num_iteration, |
nothing calls this directly
no test coverage detected