00001 // Copyright (C) 2011 CNRS - Ecole Polytechnique - INRIA. 00002 // 00003 // This file is part of TIFA. 00004 // 00005 // TIFA is free software; you can redistribute it and/or modify it under the 00006 // terms of the GNU Lesser General Public License as published by the Free 00007 // Software Foundation; either version 2.1 of the License, or (at your option) 00008 // any later version. 00009 // 00010 // TIFA is distributed in the hope that it will be useful, but WITHOUT ANY 00011 // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 00012 // FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for 00013 // more details. 00014 // 00015 // You should have received a copy of the GNU Lesser General Public License 00016 // along with this library; if not, write to the Free Software Foundation, 00017 // Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 00018 00031 #if !defined(_TIFA_FIRST_PRIMES_H_) 00032 00036 #define _TIFA_FIRST_PRIMES_H_ 00037 00038 #include <inttypes.h> 00039 00040 #include "array.h" 00041 #include "tifa_config.h" 00042 00047 #define NFIRST_PRIMES 65536 00048 00053 extern const uint32_t first_primes[NFIRST_PRIMES] MAYBE_UNUSED; 00054 00058 extern const uint32_t LARGEST_PRIME MAYBE_UNUSED; 00059 00070 extern const uint32_array_t first_primes_array MAYBE_UNUSED; 00071 00072 #endif 00073