mirror of
https://github.com/Doctorado-ML/FImdlp.git
synced 2025-08-17 16:35:52 +00:00
13 lines
219 B
C++
13 lines
219 B
C++
#ifndef FIMDLP_H
|
|
#define FIMDLP_H
|
|
#include <vector>
|
|
#include <Python.h>
|
|
namespace FImdlp {
|
|
class FImdlp {
|
|
public:
|
|
FImdlp();
|
|
~FImdlp();
|
|
samples cutPoints(labels&, labels&);
|
|
};
|
|
}
|
|
#endif |