/* * Copyright 2011, Ben Langmead * * This file is part of Bowtie 2. * * Bowtie 2 is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Bowtie 2 is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Bowtie 2. If not, see . */ #include #include "limit.h" uint8_t MIN_U8 = std::numeric_limits::min(); uint8_t MAX_U8 = std::numeric_limits::max(); uint16_t MIN_U16 = std::numeric_limits::min(); uint16_t MAX_U16 = std::numeric_limits::max(); uint32_t MIN_U32 = std::numeric_limits::min(); uint32_t MAX_U32 = std::numeric_limits::max(); uint64_t MIN_U64 = std::numeric_limits::min(); uint64_t MAX_U64 = std::numeric_limits::max(); size_t MIN_SIZE_T = std::numeric_limits::min(); size_t MAX_SIZE_T = std::numeric_limits::max(); int MIN_I = std::numeric_limits::min(); int MAX_I = std::numeric_limits::max(); int8_t MIN_I8 = std::numeric_limits::min(); int8_t MAX_I8 = std::numeric_limits::max(); int16_t MIN_I16 = std::numeric_limits::min(); int16_t MAX_I16 = std::numeric_limits::max(); int32_t MIN_I32 = std::numeric_limits::min(); int32_t MAX_I32 = std::numeric_limits::max(); int64_t MIN_I64 = std::numeric_limits::min(); int64_t MAX_I64 = std::numeric_limits::max();