1 // =================================
 2 // Copyright (c) 2021 Seppo Laakko
 3 // Distributed under the MIT license
 4 // =================================
 5 
 6 #ifndef SOULNG_UTIL_PRIME_INCLUDED
 7 #define SOULNG_UTIL_PRIME_INCLUDED
 8 #include <soulng/util/UtilApi.hpp>
 9 #include <boost/multiprecision/cpp_int.hpp>
10 
11 namespace soulng { namespace util {
12 
13 // Returns smallest prime greater than x
14 
15 void NextPrime(boost::multiprecision::uint128_t& x);
16 
17 } } // namespace soulng::util
18 
19 #endif // SOULNG_UTIL_PRIME_INCLUDED