Files
fimdlp/fimdlp/typesFImdlp.h
2022-12-02 12:54:09 +01:00

15 lines
434 B
C++

#ifndef TYPES_H
#define TYPES_H
#include <vector>
namespace mdlp {
typedef std::vector<float> samples;
typedef std::vector<int> labels;
typedef std::vector<size_t> indices_t;
struct CutPointBody {
size_t start, end; // indices of the sorted vector
int classNumber; // class assigned to the cut point
float fromValue, toValue;
};
typedef CutPointBody CutPoint_t;
}
#endif