| 51 | } |
| 52 | |
| 53 | LGBM_SE LGBM_DatasetCreateFromFile_R(LGBM_SE filename, |
| 54 | LGBM_SE parameters, |
| 55 | LGBM_SE reference, |
| 56 | LGBM_SE out, |
| 57 | LGBM_SE call_state) { |
| 58 | R_API_BEGIN(); |
| 59 | DatasetHandle handle = nullptr; |
| 60 | CHECK_CALL(LGBM_DatasetCreateFromFile(R_CHAR_PTR(filename), R_CHAR_PTR(parameters), |
| 61 | R_GET_PTR(reference), &handle)); |
| 62 | R_SET_PTR(out, handle); |
| 63 | R_API_END(); |
| 64 | } |
| 65 | |
| 66 | LGBM_SE LGBM_DatasetCreateFromCSC_R(LGBM_SE indptr, |
| 67 | LGBM_SE indices, |
nothing calls this directly
no test coverage detected