master
h 15 lines 352 Bytes
Raw
1 // SPDX-License-Identifier: GPL-3.0-or-later
2
3 #ifndef NETDATA_ML_CALCULATED_NUMBER_H
4 #define NETDATA_ML_CALCULATED_NUMBER_H
5
6 #include <dlib/matrix.h>
7
8 // CentOS 7 shenanigans
9 #include <cmath>
10 using std::isfinite;
11
12 typedef double calculated_number_t;
13 typedef dlib::matrix<calculated_number_t, 6, 1> DSample;
14
15 #endif /* NETDATA_ML_CALCULATED_NUMBER_H */