// **************************************************************** // SPDX - FileCopyrightText: Copyright 2024 Ricardo Montañana Gómez // SPDX - FileType: SOURCE // SPDX - License - Identifier: MIT // **************************************************************** #ifndef TYPES_H #define TYPES_H #include #include #include using namespace std; namespace mdlp { typedef float precision_t; typedef int label_t; typedef std::vector samples_t; typedef std::vector labels_t; typedef std::vector indices_t; typedef std::vector cutPoints_t; typedef std::map, precision_t> cacheEnt_t; typedef std::map, precision_t> cacheIg_t; } #endif