Refactor folder structure of the project

This commit is contained in:
2023-07-01 02:33:26 +02:00
parent 52cb85b41b
commit 79e7912ab3
23 changed files with 13 additions and 108 deletions

18
sample/typesFImdlp.h Normal file
View File

@@ -0,0 +1,18 @@
#ifndef TYPES_H
#define TYPES_H
#include <vector>
#include <map>
#include <stdexcept>
using namespace std;
namespace mdlp {
typedef float precision_t;
typedef vector<precision_t> samples_t;
typedef vector<int> labels_t;
typedef vector<size_t> indices_t;
typedef vector<precision_t> cutPoints_t;
typedef map<pair<int, int>, precision_t> cacheEnt_t;
typedef map<tuple<int, int, int>, precision_t> cacheIg_t;
}
#endif