Branch data Line data Source code
1 : : // ***************************************************************************** 2 : : /*! 3 : : \file src/RNGTest/TestU01Util.hpp 4 : : \copyright 2012-2015 J. Bakosi, 5 : : 2016-2018 Los Alamos National Security, LLC., 6 : : 2019-2021 Triad National Security, LLC. 7 : : All rights reserved. See the LICENSE file for details. 8 : : \brief Interfacing the TestU01 random number generator test suite 9 : : \details Interfacing the TestU01 random number generator test suite. 10 : : */ 11 : : // ***************************************************************************** 12 : : #ifndef TestU01Util_h 13 : : #define TestU01Util_h 14 : : 15 : : #include <memory> 16 : : 17 : : extern "C" { 18 : : #include <unif01.h> 19 : : } 20 : : 21 : : namespace rngtest { 22 : : 23 : : //! Custom deleter binding a raw TestU01 pointer to its TestU01 deleter 24 : : template< typename RawPtr, void (*Deleter)(RawPtr *) > 25 : : struct Eraser { 26 : : void operator()( RawPtr* ptr ) { 27 : 168 : Deleter( ptr ); 28 : 168 : } 29 : : }; 30 : : 31 : : //! TestU01 pointer type with a custom deleter 32 : : template< class Ptr, void (*Deleter)(Ptr *) > 33 : : using TestU01Ptr = std::unique_ptr< Ptr, Eraser< Ptr, Deleter > >; 34 : : 35 : : //! TestU01 external generator type with a custom deleter by TestU01 36 : : using Gen01Ptr = TestU01Ptr< unif01_Gen, unif01_DeleteExternGen01 >; 37 : : 38 : : } // rngtest:: 39 : : 40 : : #endif // TestU01Util_h