Refactor tests

This commit is contained in:
2022-12-02 12:54:09 +01:00
parent 0686195854
commit 5657c1cd9f
14 changed files with 265 additions and 174 deletions

View File

@@ -2,14 +2,12 @@
#define FIMDLP_H
#include <vector>
#include <Python.h>
namespace FImdlp
{
class FImdlp
{
namespace FImdlp {
class FImdlp {
public:
FImdlp();
~FImdlp();
std::vector<float> cutPoints(std::vector<int> &, std::vector<int> &);
samples cutPoints(labels&, labels&);
};
}
#endif