release all classifiers
()
| 27 | /// release all classifiers |
| 28 | /// </summary> |
| 29 | public static void release_all () |
| 30 | { |
| 31 | int res = MLModuleLibrary.release_all (); |
| 32 | if (res != (int)BrainFlowExitCodes.STATUS_OK) |
| 33 | { |
| 34 | throw new BrainFlowError (res); |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | /// <summary> |
| 39 | /// set log level, logger is disabled by default |
nothing calls this directly
no test coverage detected