| 10 | |
| 11 | |
| 12 | void MLModel::release_all () |
| 13 | { |
| 14 | int res = ::release_all (); |
| 15 | if (res != (int)BrainFlowExitCodes::STATUS_OK) |
| 16 | { |
| 17 | throw BrainFlowException ("failed to release classifiers", res); |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | std::string params_to_string (struct BrainFlowModelParams params) |
| 22 | { |
nothing calls this directly
no test coverage detected